We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f6e352b + 880c26d commit d9f6f3aCopy full SHA for d9f6f3a
.github/workflows/test-deploy-publish.yml
@@ -7,6 +7,10 @@ on:
7
paths-ignore:
8
- 'terraform/**'
9
10
+concurrency:
11
+ group: ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress: false
13
+
14
jobs:
15
tests:
16
name: Tests
@@ -47,6 +51,9 @@ jobs:
47
51
needs: [ 'tests', 'lint' ]
48
52
if: github.ref_name == 'main' || github.ref_name == 'develop'
49
53
runs-on: ubuntu-latest
54
+ concurrency:
55
+ group: deploy-${{ github.ref }}-${{ matrix.region }}
56
50
57
strategy:
58
matrix:
59
region: [ us-east-1, us-west-2 ]
@@ -96,7 +103,7 @@ jobs:
96
103
with:
97
104
images: |
98
105
${{ vars.IMAGE_NAME }}
99
- ghcr.io/${{ github.repository_owner }}/${{ vars.IMAGE_NAME }}
106
+ ghcr.io/${{ github.repository }}
100
107
tags: |
101
108
type=ref,event=branch
102
109
type=semver,pattern={{version}}
0 commit comments