SL-20546: Make dependency on build job explicit, not indirect.

The release job has been dependent on sign-and-package-windows and
sign-and-package-mac, each of which depends on build. But that indirect
dependency doesn't convey access to ${{ needs.build.outputs.xxx }}. Add the
build job to direct dependencies so release can access its outputs.

(cherry picked from commit 819604d2ce)
master
Nat Goodspeed 2023-11-15 09:44:38 -05:00
parent e4865db0ca
commit cfbef4e4f9
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ jobs:
version: ${{ needs.build.outputs.viewer_version }}
release:
needs: [sign-and-package-windows, sign-and-package-mac]
needs: [build, sign-and-package-windows, sign-and-package-mac]
runs-on: ubuntu-latest
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'Second_Life_')
steps: