Skip to content

Commit

Permalink
update workflow deps for publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Nov 23, 2024
1 parent 8ba75f7 commit 76a18a6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
branch: ${{ inputs.branch }}

generate-changelog:
needs: unit-tests
uses: ./.github/workflows/_generate-changelog.yml
with:
package: ${{ inputs.package }}
Expand All @@ -48,7 +49,7 @@ jobs:

publish-internal:
if: ${{ inputs.pypi-internal == true }}
needs: [unit-tests, generate-changelog]
needs: generate-changelog
uses: ./.github/workflows/_publish-internal.yml
with:
package: ${{ inputs.package }}
Expand All @@ -58,7 +59,7 @@ jobs:

publish-pypi:
if: ${{ inputs.pypi-public == true }}
needs: unit-tests
needs: generate-changelog
uses: ./.github/workflows/_publish-pypi.yml
with:
package: ${{ inputs.package }}
Expand Down

0 comments on commit 76a18a6

Please sign in to comment.