Skip to content

Commit

Permalink
using zip instead of tar
Browse files Browse the repository at this point in the history
  • Loading branch information
gangatp committed Jan 24, 2024
1 parent 6c10b13 commit 1e7d15a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ jobs:
id: extract
with:
image: lib3mf_ubi8:latest
path: /out.tar.gz
path: /out.zip
destination: dist
-
name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: lib3mf_ubi8_gcc12.tar.gz
path: dist
name: lib3mf_ubi8_gcc12.zip
path: dist/out.zip

build-macos:
runs-on: macos-latest
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ RUN \
python39-pip \
tar \
gzip \
zip \
unzip \
${GCCTOOLSET} \
&& microdnf clean all

Expand Down Expand Up @@ -73,7 +75,7 @@ RUN cp -r ./lib3mf-repo/Autogenerated/Bindings/. ./out/Bindings/

RUN cp ./lib3mf-repo/build/lib3mf.so ./out/

RUN tar czf out.tar.gz out
RUN zip -r out.zip out



Expand Down

0 comments on commit 1e7d15a

Please sign in to comment.