Created
April 19, 2021 19:57
-
-
Save mmontes11/25cd381bb1112f6b64f7c7993b25fe0d to your computer and use it in GitHub Desktop.
This file contains hidden or 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: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v2 | |
| - uses: azure/setup-helm@v1 | |
| with: | |
| version: "v3.5.3" | |
| id: install | |
| - name: Release | |
| env: | |
| HELM_REPO_USERNAME: ${{ secrets.HELM_REPO_USERNAME }} | |
| HELM_REPO_PASSWORD: ${{ secrets.HELM_REPO_PASSWORD }} | |
| run: ./scripts/release.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment