Workflow file for this run
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 latest helm releases to internal cluster | |
"on": | |
release: | |
types: [released] | |
jobs: | |
update_helm_releases: | |
runs-on: ubuntu-latest | |
steps: | |
- name: update helm releases | |
run: | | |
gh workflow run updatecli-helm-integration-tests.yaml \ | |
--repo prefecthq/ops-cluster-deployment \ | |
--ref main \ | |
-f helm_version=${{ github.ref_name }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.OPS_CLUSTER_DEPLOYMENT_ACTIONS_RW }} |