File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 48
48
- name : Remove .git
49
49
run : rm -rf "${name}-${ref}/.git" && ls -laR "${name}-${ref}"
50
50
51
- - name : Tar/xz source
52
- run : tar -cvJf "${name}-${ref}.tar.xz " "${name}-${ref}"
51
+ - name : Tar/zstd source
52
+ run : tar --zstd -cvf "${name}-${ref}.tar.zst " "${name}-${ref}"
53
53
54
54
- uses : actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
55
55
with :
@@ -124,11 +124,11 @@ jobs:
124
124
- name : Check output
125
125
run : file "target/${{ matrix.target }}/release/${name}"
126
126
- name : Compress
127
- run : cp "target/${{ matrix.target }}/release/${name}" . && tar -cvJf "${name}-${ref}-${{ matrix.target }}.tar.xz " "${name}"
127
+ run : cp "target/${{ matrix.target }}/release/${name}" . && tar --zstd -cvf "${name}-${ref}-${{ matrix.target }}.tar.zst " "${name}"
128
128
- uses : actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
129
129
with :
130
130
name : ${{ matrix.target }}
131
- path : " ${{ env.name }}-${{ env.ref }}-${{ matrix.target }}.tar.xz "
131
+ path : " ${{ env.name }}-${{ env.ref }}-${{ matrix.target }}.tar.zst "
132
132
133
133
publish_github :
134
134
name : Publish [GitHub]
@@ -149,7 +149,7 @@ jobs:
149
149
if : startsWith(github.ref, 'refs/tags/')
150
150
with :
151
151
files : |
152
- *.xz
152
+ *.zst
153
153
body_path : release-notes.md
154
154
make_latest : true
155
155
env :
You can’t perform that action at this time.
0 commit comments