Skip to content

Commit

Permalink
Fix windows-arm64 release (#2274)
Browse files Browse the repository at this point in the history
  • Loading branch information
ntkme committed Jul 10, 2024
1 parent 7203d65 commit c96b5e2
Showing 1 changed file with 15 additions and 2 deletions.
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

0 comments on commit c96b5e2

Please sign in to comment.