Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Commit

Permalink
fix(ci): fix incorrect concurrency sytanx
Browse files Browse the repository at this point in the history
  • Loading branch information
azlam-abdulsalam committed Mar 28, 2022
1 parent 10e7b75 commit 464fdb6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ jobs:
secrets:
npm-token: ${{ secrets.NPM_TOKEN }}
if: ${{ github.ref == 'refs/heads/develop' }}
concurrency: alpha
cancel-in-progress: true
concurrency:
group: alpha
cancel-in-progress: true

# Hotfix stage
hotfix:
Expand All @@ -42,8 +43,9 @@ jobs:
secrets:
npm-token: ${{ secrets.NPM_TOKEN }}
if: ${{ github.ref == 'refs/heads/main' }}
concurrency: hotfix
cancel-in-progress: true
concurrency:
group: hotfix
cancel-in-progress: true

sfpowerscripts-beta:
name: 'sfpowerscripts Beta'
Expand Down

0 comments on commit 464fdb6

Please sign in to comment.