From 3ab03f5916cb3ea667dafbf9a333469027eb2d4a Mon Sep 17 00:00:00 2001 From: GyulyVGC Date: Wed, 15 Oct 2025 23:29:33 +0200 Subject: [PATCH] fix package.yml workflow --- .github/workflows/package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 85515d01..b363f58a 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -77,7 +77,7 @@ jobs: targets: ${{ matrix.target }} - name: Check crate - if: matrix.os == 'macos' || matrix.os == 'windows' || matrix.os == 'ubuntu' && matrix.arch == 'amd64' + if: matrix.os == 'macos' || matrix.os == 'windows' && matrix.arch != 'arm64' || matrix.os == 'ubuntu' && matrix.arch == 'amd64' run: cargo publish --dry-run --target ${{ matrix.target }} - name: Clippy (release mode)