Skip to content

Commit 197518b

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

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+
# use bzip2 as xzip isn't supported by tar on windows
157+
run: tar cvfj cg_clif.tar.bz2 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.bz2

0 commit comments

Comments
 (0)