Skip to content

Commit d9f6f3a

Browse files
authored
Merge pull request #84 from silinternational/feature-concurr
Changing the package naming
2 parents f6e352b + 880c26d commit d9f6f3a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/test-deploy-publish.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
paths-ignore:
88
- 'terraform/**'
99

10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: false
13+
1014
jobs:
1115
tests:
1216
name: Tests
@@ -47,6 +51,9 @@ jobs:
4751
needs: [ 'tests', 'lint' ]
4852
if: github.ref_name == 'main' || github.ref_name == 'develop'
4953
runs-on: ubuntu-latest
54+
concurrency:
55+
group: deploy-${{ github.ref }}-${{ matrix.region }}
56+
cancel-in-progress: false
5057
strategy:
5158
matrix:
5259
region: [ us-east-1, us-west-2 ]
@@ -96,7 +103,7 @@ jobs:
96103
with:
97104
images: |
98105
${{ vars.IMAGE_NAME }}
99-
ghcr.io/${{ github.repository_owner }}/${{ vars.IMAGE_NAME }}
106+
ghcr.io/${{ github.repository }}
100107
tags: |
101108
type=ref,event=branch
102109
type=semver,pattern={{version}}

0 commit comments

Comments
 (0)