Skip to content

Commit d0f0fbc

Browse files
committed
DEV: Move tarball to current working directory after making
1 parent 167f6e1 commit d0f0fbc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/add_source_to_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424

2525
- name: Make Tarball
2626
run: |
27-
tar czf "$TARBALL" \
27+
tar czf "../$TARBALL" \
2828
--transform "s,^\.,piqtree-${VERSION}," \
29-
--exclude-vcs \
30-
--exclude="*.tar.gz" .
29+
--exclude-vcs .
30+
mv "../$TARBALL" "$TARBALL"
3131
3232
- name: Compute SHA256 Checksum
3333
run: sha256sum "$TARBALL" > "$TARBALL.sha256"

0 commit comments

Comments
 (0)