Skip to content

Commit

Permalink
Fix 'concurrency' groups for deploy workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickeskov committed Nov 8, 2024
1 parent 7c44e12 commit 653d66c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ on:
description: "Deployment server user"

concurrency:
group: ${{ github.workflow }}-${{ github.event.inputs.network }}-${{ github.event.inputs.arch }}
group: ${{ github.workflow }}-${{ inputs.network }}-${{ inputs.arch }}
cancel-in-progress: false # don't cancel the previous deployment if a new one is triggered

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_nodes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
network: [ stagenet, testnet, mainnet ]
arch: [ "${{ github.event.inputs.arch }}" ]
arch: [ "${{ inputs.arch }}" ]
uses: "./.github/workflows/deploy_node.yml"
with:
network: ${{ matrix.network }}
Expand Down

0 comments on commit 653d66c

Please sign in to comment.