Skip to content

Commit

Permalink
CI: Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi311 committed Dec 15, 2024
1 parent 062d5f6 commit 306ff2a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ jobs:
- name: Skip arm64 build if not release
if: matrix.arch == 'aarch64' && !matrix.include_arm64
run: echo "Skipping arm64 build since it's not a release."

- uses: actions/checkout@v4
if: matrix.arch != 'aarch64' || matrix.include_arm64

Expand Down Expand Up @@ -224,7 +225,7 @@ jobs:
if: matrix.arch != 'aarch64' || matrix.include_arm64

- name: Move files (linux/macOS)
if: ${{ matrix.os != 'windows-latest' }} && ${{ matrix.arch != 'aarch64' || matrix.include_arm64 }}
if: ${{ (matrix.os != 'windows-latest') && (matrix.arch != 'aarch64' || matrix.include_arm64) }}
run: |
mkdir -p builds
find target/ -type f \( -name "*.deb" -o -name "*.AppImage" -o -name "*.dmg" \) -print0 |
Expand Down

0 comments on commit 306ff2a

Please sign in to comment.