Skip to content
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/[email protected]
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