Merge pull request #16 from Aquaveo/main #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Charts | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: Run chart-releaser for gs-cloud | |
uses: bitdeps/[email protected] | |
with: | |
oci_registry: ghcr.io/aquaveo | |
oci_username: aquaveo | |
oci_password: ${{ secrets.GITHUB_TOKEN }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
charts_dir: charts/gs-cloud | |
- name: Run chart-releaser thredds | |
uses: bitdeps/[email protected] | |
with: | |
oci_registry: ghcr.io/aquaveo | |
oci_username: aquaveo | |
oci_password: ${{ secrets.GITHUB_TOKEN }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
charts_dir: charts/thredds | |
- name: Run chart-releaser geoserver | |
uses: bitdeps/[email protected] | |
with: | |
oci_registry: ghcr.io/aquaveo | |
oci_username: aquaveo | |
oci_password: ${{ secrets.GITHUB_TOKEN }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
charts_dir: charts/geoserver | |
- name: Run chart-releaser postgis | |
uses: bitdeps/[email protected] | |
with: | |
oci_registry: ghcr.io/aquaveo | |
oci_username: aquaveo | |
oci_password: ${{ secrets.GITHUB_TOKEN }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
charts_dir: charts/postgis | |
- name: Run chart-releaser djangocms | |
uses: bitdeps/[email protected] | |
with: | |
oci_registry: ghcr.io/aquaveo | |
oci_username: aquaveo | |
oci_password: ${{ secrets.GITHUB_TOKEN }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
charts_dir: charts/djangocms |