Skip to content

Commit

Permalink
Add missing "outputs" to GitHub outputs declarations (pantsbuild#19488)
Browse files Browse the repository at this point in the history
  • Loading branch information
thejcannon authored Jul 18, 2023
1 parent bb66ccb commit e3510a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ jobs:
outputs:
build-ref: ${{ steps.get_info.outputs.build-ref }}
is-release: ${{ steps.get_info.outputs.is-release }}
release-asset-upload-url: ${{ steps.make_draft_release.release-asset-upload-url
release-asset-upload-url: ${{ steps.make_draft_release.outputs.release-asset-upload-url
}}
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion src/python/pants_release/generate_github_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -1113,7 +1113,7 @@ def release_jobs_and_inputs() -> tuple[Jobs, dict[str, Any]]:
"outputs": {
"build-ref": gha_expr("steps.get_info.outputs.build-ref"),
"release-asset-upload-url": gha_expr(
"steps.make_draft_release.release-asset-upload-url"
"steps.make_draft_release.outputs.release-asset-upload-url"
),
"is-release": gha_expr("steps.get_info.outputs.is-release"),
},
Expand Down

0 comments on commit e3510a8

Please sign in to comment.