Skip to content

Commit c96b5e2

Browse files
authored
Fix windows-arm64 release (#2274)
1 parent 7203d65 commit c96b5e2

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.github/workflows/build-windows.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,21 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v4
2626

27-
- uses: ./.github/util/initialize
28-
with: {github-token: "${{ github.token }}"}
27+
# See: https://github.com/orgs/community/discussions/131594
28+
# The composite action requires bash which is not available on windows-arm64 runner.
29+
# - uses: ./.github/util/initialize
30+
# with: {github-token: "${{ github.token }}"}
31+
32+
- uses: dart-lang/setup-dart@v1
33+
34+
- uses: bufbuild/[email protected]
35+
with: {github_token: "${{ github.token }}"}
36+
37+
- name: Install Dependencies
38+
run: dart pub get
39+
40+
- name: Compile Protobuf
41+
run: dart run grinder protobuf
2942

3043
- name: Build
3144
run: dart run grinder pkg-standalone-windows-${{ matrix.arch }}

0 commit comments

Comments
 (0)