Skip to content

Commit

Permalink
fix CI trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal-Delange committed Oct 24, 2024
1 parent 0f95b32 commit 5bac578
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Release Charts

on:
release:
types:
- created
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
Expand All @@ -24,14 +25,14 @@ jobs:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

- name: Google Auth
uses: 'google-github-actions/auth@v2'
uses: "google-github-actions/auth@v2"
with:
credentials_json: '${{ secrets.GCP_SA_KEY }}'
credentials_json: "${{ secrets.GCP_SA_KEY }}"

- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v2'
- name: "Set up Cloud SDK"
uses: "google-github-actions/setup-gcloud@v2"
with:
version: '>= 363.0.0'
version: ">= 363.0.0"

- name: Login to artifact registry
run: |
Expand All @@ -42,9 +43,9 @@ jobs:
- name: Prepare YQ
uses: dcarbone/[email protected]
with:
version: 'v4.44.3'
download-compressed: 'false'
force: 'false'
version: "v4.44.3"
download-compressed: "false"
force: "false"

- name: Update dependencies
run: |
Expand Down

0 comments on commit 5bac578

Please sign in to comment.