fix(deps): update helm release fleet to v6.7.4 (#1265) #882
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: CI - Deploy | |
| on: | |
| push: | |
| branches-ignore: | |
| - gh-readonly-queue/main/pr-** | |
| merge_group: | |
| permissions: | |
| contents: read | |
| packages: write | |
| jobs: | |
| # TODO: Reenable dev when no longer in savings mode | |
| # bootstrap-dev: | |
| # uses: devantler-tech/reusable-workflows/.github/workflows/cd-cluster-bootstrap.yaml@800bac1f7de14fcc6b9b9bcf62e201308eafd15b # v1.15.12 | |
| # with: | |
| # DEPLOYMENT_ENV: dev | |
| # SKIP: ${{ github.event_name != 'merge_group' }} | |
| # secrets: | |
| # KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} | |
| # SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }} | |
| bootstrap-dev: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: No-op bootstrap | |
| run: echo "bootstrap-dev skipped" | |
| # TODO: Reenable dev when no longer in savings mode | |
| # deploy-dev: | |
| # needs: bootstrap-dev | |
| # uses: devantler-tech/reusable-workflows/.github/workflows/cd-gitops-deploy.yaml@800bac1f7de14fcc6b9b9bcf62e201308eafd15b # v1.15.12 | |
| # with: | |
| # DEPLOYMENT_ENV: dev | |
| # SKIP: ${{ github.event_name != 'merge_group' }} | |
| # secrets: | |
| # KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} | |
| # SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }} | |
| deploy-dev: | |
| needs: bootstrap-dev | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: No-op deploy | |
| run: echo "deploy-dev skipped" |