Skip to content
Snippets Groups Projects
Commit f9a30e7e authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

SL-18837: Try posting build.yaml step outputs as job outputs.

parent 66054036
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
...@@ -18,6 +18,10 @@ jobs: ...@@ -18,6 +18,10 @@ jobs:
- runner: macos-12-xl - runner: macos-12-xl
developer_dir: "/Applications/Xcode_14.0.1.app/Contents/Developer" developer_dir: "/Applications/Xcode_14.0.1.app/Contents/Developer"
runs-on: ${{ matrix.runner }} runs-on: ${{ matrix.runner }}
outputs:
# pass these from build job to release job
installer: ${{ steps.build.outputs.installer }}
metadata: ${{ steps.build.outputs.metadata }}
env: env:
AUTOBUILD_ADDRSIZE: 64 AUTOBUILD_ADDRSIZE: 64
AUTOBUILD_BUILD_ID: ${{ github.run_id }} AUTOBUILD_BUILD_ID: ${{ github.run_id }}
...@@ -245,5 +249,5 @@ jobs: ...@@ -245,5 +249,5 @@ jobs:
with: with:
generate_release_notes: true generate_release_notes: true
files: | files: |
${{ steps.build.outputs.installer }} ${{ jobs.build.outputs.installer }}
${{ steps.build.outputs.metadata }} ${{ jobs.build.outputs.metadata }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment