Change envFrom type #129
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: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
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: Add charts repo | |
run: helm repo add charts https://charts.bitnami.com/bitnami | |
- name: fetch all dependencies | |
run: | | |
bash -c 'for dir in charts/*; do helm dependency build "$dir"; done' | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
continue-on-error: true | |
with: | |
charts_dir: charts | |
skip_existing: true | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
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 |