Skip to content

Commit 199e033

Browse files
committed
Fix job dependencies
1 parent ce9908e commit 199e033

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
git_latest_release_tag: ${{ needs.latest-github-release.outputs.tag_name }}
123123
runs-on: ubuntu-latest
124124
secrets: inherit
125-
needs: [publish-base]
125+
needs: [latest-github-release, build-version-compatibility-matrix, publish-base]
126126

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

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

0 commit comments

Comments
 (0)