Skip to content

Commit 9a87dec

Browse files
committed
Fix publish job
The name of the action was wrong, leading to: Error: Unable to resolve action actions/download-artifacts, repository not found The publish job also started before the build job. Fixed by adding the missing dependency.
1 parent c0b0695 commit 9a87dec

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,10 @@ jobs:
3838

3939
publish:
4040
runs-on: ubuntu-latest
41+
needs: build
4142

4243
steps:
43-
- uses: actions/download-artifacts@v4
44+
- uses: actions/download-artifact@v4
4445
with:
4546
merge-multiple: true
4647

0 commit comments

Comments
 (0)