chore: add workflow for updating appversion #17
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: | |
- main | |
jobs: | |
release: | |
name: Release charts | |
runs-on: ubuntu-latest | |
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: Helm repo | |
run: | | |
helm repo add ibissource https://ibissource.github.io/charts/ && | |
helm repo add bitnami https://charts.bitnami.com/bitnami && | |
helm repo add maykinmedia https://maykinmedia.github.io/charts/ | |
- name: Helm Deps | |
run: | | |
for dir in $(ls -d charts/*); do | |
helm dependency update $dir; | |
done | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
continue-on-error: true | |
with: | |
charts_dir: charts | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
CR_SKIP_EXISTING: true | |
docs: | |
needs: release | |
name: Build documentation | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: frontend | |
env: | |
NUXT_APP_BASE_URL: /charts/ | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Installing project dependencies | |
run: yarn install | |
- name: Build site | |
run: yarn generate | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: frontend/.output/public | |
target-folder: docs | |
clean-exclude: |- | |
.nojekyll | |
copy: | |
needs: docs | |
name: Copy index.yaml | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout gh-pages branch | |
uses: actions/checkout@v3 | |
with: | |
ref: gh-pages | |
- name: Copy index.yaml | |
run: cp index.yaml docs/index.yaml | |
- uses: stefanzweifel/git-auto-commit-action@v4 |