Skip to content

Commit c4fb89b

Browse files
committed
Fix tarball collision
1 parent 42e7a8b commit c4fb89b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
# ---------- Package ----------
5656
- name: Create release tarball
5757
run: |
58-
tar czf release.tar.gz \
58+
tar czf /tmp/release.tar.gz \
5959
--exclude='.git' \
6060
--exclude='.env' \
6161
--exclude='.env.local' \
@@ -67,6 +67,7 @@ jobs:
6767
--exclude='*.swp' \
6868
.
6969
70+
mv /tmp/release.tar.gz release.tar.gz
7071
echo "Tarball size: $(du -h release.tar.gz | cut -f1)"
7172
echo "Contents:"
7273
tar tzf release.tar.gz | head -40

0 commit comments

Comments
 (0)