beta #1263
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: 'Deploy' | |
on: ['deployment'] | |
jobs: | |
deployment: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: 'Checkout' | |
uses: 'actions/checkout@v3' | |
- name: 'Deploy' | |
# Parameters are pulled directly from the GitHub deployment event so the | |
# configuration for the job here is very minimal. | |
uses: 'vimeda/[email protected]' | |
with: | |
helm: 'helm3' | |
token: '${{ github.token }}' | |
secrets: '${{ toJSON(secrets) }}' | |
version: '${{ github.sha }}' | |
chart: './charts/bahn.expert' | |
timeout: '9m' | |
values: | | |
imageTag: '${{ github.sha }}' | |
env: | |
KUBECONFIG_FILE: '${{ secrets.KUBECONFIG }}' |