Difference between revisions of "GitHub Actions helm deployments"
Jump to navigation
Jump to search
Line 27: | Line 27: | ||
env: | env: | ||
[[KUBECONFIG_FILE]]:<nowiki> '${{ secrets.KUBECONFIG }}'</nowiki> | [[KUBECONFIG_FILE]]:<nowiki> '${{ secrets.KUBECONFIG }}'</nowiki> | ||
+ | |||
+ | |||
+ | |||
+ | {{GA}} |
Revision as of 10:34, 16 February 2024
https://github.com/marketplace/actions/helm-deploy
# .github/workflows/deploy.yml name: Deploy on: ['deployment'] jobs: deployment: runs-on: 'ubuntu-latest' steps: - uses: actions/checkout@v1 - name: 'Deploy' uses: 'deliverybot/helm@v1' with: release: 'nginx' namespace: 'default' chart: 'app' token: '${{ github.token }}' values: | name: foobar value-files: >- [ "values.yaml", "values.production.yaml" ] env: KUBECONFIG_FILE: '${{ secrets.KUBECONFIG }}'
Advertising: