Skip to content

Commit

Permalink
Fix job dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
idirze committed May 17, 2024
1 parent ce9908e commit 199e033
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 @@ -122,7 +122,7 @@ jobs:
git_latest_release_tag: ${{ needs.latest-github-release.outputs.tag_name }}
runs-on: ubuntu-latest
secrets: inherit
needs: [publish-base]
needs: [latest-github-release, build-version-compatibility-matrix, publish-base]

publish-spark:
if: github.repository_owner == 'OKDP' && needs.latest-github-release.outputs.tag_name != ''
Expand All @@ -144,7 +144,7 @@ jobs:
git_latest_release_tag: ${{ needs.latest-github-release.outputs.tag_name }}
runs-on: ubuntu-latest
secrets: inherit
needs: [publish-base]
needs: [latest-github-release, build-version-compatibility-matrix, publish-base]

## https://github.com/orgs/community/discussions/67654#discussioncomment-8038649
partial-rerun-on-failure:
Expand Down

0 comments on commit 199e033

Please sign in to comment.