fix bug with oauth #100
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 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
docs-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build helm-docs | |
uses: docker://docker.io/jnorwood/helm-docs:latest | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
message: 'Automatic build of docs from GitHub Action' | |
release: | |
needs: docs-build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Publish Helm charts | |
uses: stefanprodan/helm-gh-pages@master | |
with: | |
token: ${{ secrets.PACKAGE_TOKEN }} |