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 237ff55 commit 48f3bdfCopy full SHA for 48f3bdf
.github/workflows/main.yml
@@ -43,17 +43,17 @@ jobs:
43
- name: Check
44
run: make check
45
46
- # Bundle and build into 'ks.tar.gz'
+ # Bundle and build into 'kscript.tar.gz'
47
# NOTE: We must turn it into a tar, since zipping it will not
48
# preseve symlinks
49
- name: Bundle
50
run: |
51
make bundle
52
- tar -C .tmp/bundle -czvf ks.tar.gz include bin lib
+ tar -C .tmp/bundle -czvf kscript.tar.gz include bin lib
53
54
# Upload a compiled version of this
55
- name: Upload Bundle
56
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v4
57
with:
58
- name: kscript-bundle
59
- path: ks.tar.gz
+ name: kscript-tarball
+ path: kscript.tar.gz
0 commit comments