Skip to content

Commit

Permalink
fix: remove concurrency on after-tag workflows
Browse files Browse the repository at this point in the history
gdegiorgio committed Mar 7, 2024
1 parent d87726c commit 3dd6cb5
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/push-image.yaml
Original file line number Diff line number Diff line change
@@ -4,7 +4,6 @@ on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
concurrency: production
jobs:
build-and-push:
runs-on: ubuntu-latest
@@ -22,7 +21,7 @@ jobs:
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push latest
uses: docker/build-push-action@v5
with:
1 change: 0 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -4,7 +4,6 @@ on:
push:
branches:
- main
concurrency: production

jobs:
Patch:

0 comments on commit 3dd6cb5

Please sign in to comment.