Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix windows-arm64 release #2274

Merged
merged 2 commits into from
Jul 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,21 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: ./.github/util/initialize
with: {github-token: "${{ github.token }}"}
# See: https://github.com/orgs/community/discussions/131594
# The composite action requires bash which is not available on windows-arm64 runner.
# - uses: ./.github/util/initialize
# with: {github-token: "${{ github.token }}"}

- uses: dart-lang/setup-dart@v1

- uses: bufbuild/buf-setup-action@v1.30.0
with: {github_token: "${{ github.token }}"}

- name: Install Dependencies
run: dart pub get

- name: Compile Protobuf
run: dart run grinder protobuf

- name: Build
run: dart run grinder pkg-standalone-windows-${{ matrix.arch }}
Expand Down
Loading