Skip to content

Commit

Permalink
switch release action
Browse files Browse the repository at this point in the history
  • Loading branch information
maciaszczykm committed Mar 6, 2024
1 parent 9a2e47e commit d899692
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/cd-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ jobs:
build-args: |
VERSION=${{ steps.meta.outputs.version || 'latest' }}
- if: steps.push.outcome == 'success' && startsWith(github.ref, 'refs/tags/api/v')
uses: softprops/action-gh-release@v1
uses: ncipollo/release-action@v1
with:
allowUpdates: true
makeLatest: false
body: |
### Image
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/cd-auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ jobs:
build-args: |
VERSION=${{ steps.meta.outputs.version || 'latest' }}
- if: steps.push.outcome == 'success' && startsWith(github.ref, 'refs/tags/auth/v')
uses: softprops/action-gh-release@v1
uses: ncipollo/release-action@v1
with:
allowUpdates: true
makeLatest: false
body: |
### Image
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/cd-metrics-scraper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ jobs:
build-args: |
VERSION=${{ steps.meta.outputs.version || 'latest' }}
- if: steps.push.outcome == 'success' && startsWith(github.ref, 'refs/tags/metrics-scraper/v')
uses: softprops/action-gh-release@v1
uses: ncipollo/release-action@v1
with:
allowUpdates: true
makeLatest: false
body: |
### Image
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/cd-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ jobs:
build-args: |
VERSION=${{ steps.meta.outputs.version || 'latest' }}
- if: steps.push.outcome == 'success' && startsWith(github.ref, 'refs/tags/web/v')
uses: softprops/action-gh-release@v1
uses: ncipollo/release-action@v1
with:
allowUpdates: true
makeLatest: false
body: |
### Image
Expand Down

0 comments on commit d899692

Please sign in to comment.