Skip to content

Commit

Permalink
ci: Tweak config
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Dec 21, 2024
1 parent e7953b6 commit 0825899
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
target: aarch64-unknown-linux-gnu
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
build_tool: cargo
build-tool: cargo
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu.2.17
build_tool: cargo-zigbuild
build-tool: cargo-zigbuild
- os: ubuntu-latest
target: x86_64-pc-windows-gnu
- os: macos-latest # AArch64
Expand All @@ -71,7 +71,7 @@ jobs:
- os: macos-latest
checksums: sha256,sha512,sha1,md5
target: universal-apple-darwin
build_tool: cargo
build-tool: cargo
- os: windows-latest
- os: windows-latest
target: aarch64-pc-windows-msvc
Expand All @@ -83,15 +83,15 @@ jobs:
- uses: taiki-e/setup-cross-toolchain-action@v1
with:
target: ${{ matrix.target }}
if: matrix.target != '' && matrix.build_tool == 'cargo'
if: matrix.target != '' && matrix.build-tool == 'cargo'
- run: cargo new --bin test-crate
- uses: ./
id: upload-rust-binary-action
with:
dry-run: true
bin: test-crate
target: ${{ matrix.target }}
build-tool: ${{ matrix.build_tool }}
build-tool: ${{ matrix.build-tool }}
checksum: ${{ matrix.checksums || 'b2,sha256,sha512,sha1,md5' }}
tar: all
zip: all
Expand Down

0 comments on commit 0825899

Please sign in to comment.