diff --git a/.github/workflows/deploy_node.yml b/.github/workflows/deploy_node.yml index 6ccbe3bfa..2dfeda6aa 100644 --- a/.github/workflows/deploy_node.yml +++ b/.github/workflows/deploy_node.yml @@ -36,7 +36,7 @@ on: description: "Deployment server user" concurrency: - group: ${{ github.workflow }}-${{ github.event.inputs.network }}-${{ github.event.inputs.arch }} + group: deploy-node-${{ inputs.network }}-${{ inputs.arch }} # run only one deployment at a time for the same network and architecture cancel-in-progress: false # don't cancel the previous deployment if a new one is triggered jobs: diff --git a/.github/workflows/deploy_nodes.yml b/.github/workflows/deploy_nodes.yml index 851bd45e2..28cce0ad1 100644 --- a/.github/workflows/deploy_nodes.yml +++ b/.github/workflows/deploy_nodes.yml @@ -14,8 +14,8 @@ jobs: strategy: matrix: network: [ stagenet, testnet, mainnet ] - arch: [ "${{ github.event.inputs.arch }}" ] - uses: "./.github/workflows/deploy_node_to.yml" + arch: [ "${{ inputs.arch }}" ] + uses: "./.github/workflows/deploy_node.yml" with: network: ${{ matrix.network }} arch: ${{ matrix.arch }}