Skip to content

Commit

Permalink
Adds missing needs dependency to publish job on release
Browse files Browse the repository at this point in the history
This should address Better-HPC/keystone-docs#9.

The `publish.with.version` value relies on `needs.version.outputs.version` but the `version` job is missing from the `needs` list.
  • Loading branch information
djperrefort authored May 31, 2024
1 parent feb2025 commit 738cd0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

publish:
name: Publish
needs: test
needs: [ version, test ]
uses: ./.github/workflows/Publish.yml
secrets: inherit
with:
Expand Down

0 comments on commit 738cd0b

Please sign in to comment.