Skip to content

Commit 8dd8a3a

Browse files
Update release.yml
1 parent 70dead0 commit 8dd8a3a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ jobs:
2929
- name: Prepare release version
3030
run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV
3131
- name: print
32-
run: ls -R
32+
run: |
33+
ls -R
34+
cd ./dist
35+
for i in */; do tar -czvf "${i%/}.tar.gz" "$i"; done
36+
cd ..
3337
- uses: AButler/[email protected]
3438
with:
3539
files: './dist/*'

0 commit comments

Comments
 (0)