diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-07-22 08:18:13 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-07-22 08:18:13 -0400 |
commit | f9a30e7ed13091f81686d183c25e57d732cee957 (patch) | |
tree | c829a4adb0575fa66729bd397d1c71fe2dfaa1b8 /.github/workflows | |
parent | 6605403661da96dde7ff6dfb6bcfa87fc087ff0e (diff) |
SL-18837: Try posting build.yaml step outputs as job outputs.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yaml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 4262d3b6ef..3ea58d9c09 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -18,6 +18,10 @@ jobs: - runner: macos-12-xl developer_dir: "/Applications/Xcode_14.0.1.app/Contents/Developer" runs-on: ${{ matrix.runner }} + outputs: + # pass these from build job to release job + installer: ${{ steps.build.outputs.installer }} + metadata: ${{ steps.build.outputs.metadata }} env: AUTOBUILD_ADDRSIZE: 64 AUTOBUILD_BUILD_ID: ${{ github.run_id }} @@ -245,5 +249,5 @@ jobs: with: generate_release_notes: true files: | - ${{ steps.build.outputs.installer }} - ${{ steps.build.outputs.metadata }} + ${{ jobs.build.outputs.installer }} + ${{ jobs.build.outputs.metadata }} |