Skip to content

Commit

Permalink
ci: Add missing arm64 (self-hosted) builds on release (shaka-project#…
Browse files Browse the repository at this point in the history
…1358)

The build invocation from the release workflow needs settings to trigger
self-hosted builds, including Linux arm64.
  • Loading branch information
joeyparrish authored Mar 4, 2024
1 parent 34dcf3b commit 9c033b9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,13 @@ on:
- v[0-9]*

jobs:
settings:
name: Settings
uses: ./.github/workflows/settings.yaml

release:
runs-on: ubuntu-latest
needs: settings
outputs:
release_created: ${{ steps.release.outputs.release_created }}
tag_name: ${{ steps.release.outputs.tag_name }}
Expand Down Expand Up @@ -101,11 +106,13 @@ jobs:
# Do a complete build
build:
name: Build
needs: release
needs: [settings, release]
if: needs.release.outputs.release_created
uses: ./.github/workflows/build.yaml
with:
ref: ${{ github.ref }}
self_hosted: ${{ needs.settings.outputs.self_hosted != '' }}
debug: ${{ needs.settings.outputs.debug != '' }}

# Attach build artifacts to the release
artifacts:
Expand Down

0 comments on commit 9c033b9

Please sign in to comment.