Skip to content

Commit

Permalink
Use 7zip instead of zip
Browse files Browse the repository at this point in the history
  • Loading branch information
fasmat committed Jul 17, 2023
1 parent 33c61f0 commit 4895c6d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,6 @@ jobs:
- [self-hosted, macos, arm64]
- windows-latest
steps:
- name: Install dependencies in windows
if: ${{ matrix.os == 'windows-latest' }}
run: choco install zip
- name: Add OpenCL support - Ubuntu
if: ${{ matrix.os == 'ubuntu-latest' }}
run: sudo apt-get update -q && sudo apt-get install -qy ocl-icd-opencl-dev libpocl2
Expand Down Expand Up @@ -155,7 +152,7 @@ jobs:
mkdir $OUTNAME
mv ./build/* $OUTNAME
rm -f $OUTNAME/post.h
zip -r $OUTNAME.zip $OUTNAME
7z a -tzip $OUTNAME.zip $OUTNAME
- name: Archive postcli artifacts
uses: actions/upload-artifact@v3
with:
Expand All @@ -179,3 +176,4 @@ jobs:
files: ./assets/*.zip
prerelease: false
draft: true
fail_on_unmatched_files: true

0 comments on commit 4895c6d

Please sign in to comment.