Skip to content

Commit cc2b9fc

Browse files
authored
Use correct needs elements for post build action (#4439)
1 parent ed8af9d commit cc2b9fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,6 @@ jobs:
315315
needs: [linux_zip, windows_zip]
316316
uses: ./.github/workflows/post-build-release.yaml
317317
with:
318-
linux_result: ${{ needs.build_linux.result }}
319-
windows_result: ${{ needs.build_windows.result }}
318+
linux_result: ${{ needs.linux_zip.result }}
319+
windows_result: ${{ needs.windows_zip.result }}
320320
releaseTag: ${{ github.ref_name }}

0 commit comments

Comments
 (0)