We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f5a2f2 commit 39cd136Copy full SHA for 39cd136
.github/workflows/main.yml
@@ -152,11 +152,12 @@ jobs:
152
153
./y.exe build
154
155
- #- name: Package prebuilt cg_clif
156
- # run: tar cvfJ cg_clif.tar.xz build
+ - name: Package prebuilt cg_clif
+ # don't use compression as xzip isn't supported by tar on windows and bzip2 hangs
157
+ run: tar cvf cg_clif.tar build
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
+ - name: Upload prebuilt cg_clif
+ uses: actions/upload-artifact@v2
+ with:
+ name: cg_clif-${{ runner.os }}
163
+ path: cg_clif.tar
0 commit comments