Skip to content

Commit

Permalink
Merge pull request #84 from silinternational/feature-concurr
Browse files Browse the repository at this point in the history
Changing the package naming
  • Loading branch information
Praveenraj-K authored Nov 12, 2024
2 parents f6e352b + 880c26d commit d9f6f3a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test-deploy-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
paths-ignore:
- 'terraform/**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false

jobs:
tests:
name: Tests
Expand Down Expand Up @@ -47,6 +51,9 @@ jobs:
needs: [ 'tests', 'lint' ]
if: github.ref_name == 'main' || github.ref_name == 'develop'
runs-on: ubuntu-latest
concurrency:
group: deploy-${{ github.ref }}-${{ matrix.region }}
cancel-in-progress: false
strategy:
matrix:
region: [ us-east-1, us-west-2 ]
Expand Down Expand Up @@ -96,7 +103,7 @@ jobs:
with:
images: |
${{ vars.IMAGE_NAME }}
ghcr.io/${{ github.repository_owner }}/${{ vars.IMAGE_NAME }}
ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
Expand Down

0 comments on commit d9f6f3a

Please sign in to comment.