Skip to content

Commit

Permalink
ci: fix publish workflow (#428)
Browse files Browse the repository at this point in the history
  • Loading branch information
subotic authored Apr 5, 2024
1 parent 0d552c6 commit 9000a71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
# Publish manifest combining aarch64 and amd64 images
manifest:
runs-on: ubuntu-latest
needs: [ publish-amd64, publish-aarch64 ]
needs: [ amd64, aarch64 ]
if: (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags'))
steps:
- uses: actions/checkout@v4
Expand All @@ -72,7 +72,7 @@ jobs:
# Publish release to Sentry allowing us to track more
sentry:
runs-on: ubuntu-latest
needs: [ publish-manifest ]
needs: [ publish ]
if: startsWith(github.ref, 'refs/tags')
steps:
- uses: getsentry/action-release@v1
Expand Down

0 comments on commit 9000a71

Please sign in to comment.