Skip to content

Commit

Permalink
ci: fix windows ci; zip archive
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamAnimate committed Nov 13, 2024
1 parent 2b34c71 commit b676ecd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ jobs:
# if: matrix.os == 'ubuntu-latest' && matrix.target == 'aarch64-unknown-linux-gnu'
# run: zip encore_linux_aarch64.zip target/${{ matrix.target }}/release/encore -r

# - name: Zip Artifact (Windows x86_64)
# if: matrix.os == 'windows-latest' && matrix.target == 'x86_64-pc-windows-msvc'
# run: Compress-Archive -Path target/${{ matrix.target }}/release/encore.exe -DestinationPath encore_windows_x86_64.zip # odd one out
- name: Zip Artifact (Windows x86_64)
if: matrix.os == 'windows-latest' && matrix.target == 'x86_64-pc-windows-msvc'
run: Compress-Archive -Path target/${{ matrix.target }}/release/encore.exe -DestinationPath encore_windows_x86_64.zip # odd one out

# - name: Zip Artifact (Windows aarch64)
# if: matrix.os == 'windows-latest' && matrix.target == 'aarch64-pc-windows-msvc'
# run: Compress-Archive -Path target/${{ matrix.target }}/release/encore.exe -DestinationPath encore_windows_aarch64.zip
- name: Zip Artifact (Windows aarch64)
if: matrix.os == 'windows-latest' && matrix.target == 'aarch64-pc-windows-msvc'
run: Compress-Archive -Path target/${{ matrix.target }}/release/encore.exe -DestinationPath encore_windows_aarch64.zip

- name: Artifact (macOS x86_64)
if: matrix.os == 'macos-latest' && matrix.target == 'x86_64-apple-darwin'
Expand Down

0 comments on commit b676ecd

Please sign in to comment.