Skip to content

Commit 39cd136

Browse files
committed
Enable artifact uploads for windows builds
Fixes #1210
1 parent 5f5a2f2 commit 39cd136

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/main.yml

+8-7
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,12 @@ jobs:
152152
153153
./y.exe build
154154
155-
#- name: Package prebuilt cg_clif
156-
# run: tar cvfJ cg_clif.tar.xz build
155+
- name: Package prebuilt cg_clif
156+
# don't use compression as xzip isn't supported by tar on windows and bzip2 hangs
157+
run: tar cvf cg_clif.tar build
157158

158-
#- name: Upload prebuilt cg_clif
159-
# uses: actions/upload-artifact@v2
160-
# with:
161-
# name: cg_clif-${{ runner.os }}
162-
# path: cg_clif.tar.xz
159+
- name: Upload prebuilt cg_clif
160+
uses: actions/upload-artifact@v2
161+
with:
162+
name: cg_clif-${{ runner.os }}
163+
path: cg_clif.tar

0 commit comments

Comments
 (0)