Skip to content

Commit 5aab161

Browse files
authored
ENH: Also upload sha256 checksum on release
* ENH: Also upload sha256 checksum on release * DEV: store tarball in cwd
1 parent 402577e commit 5aab161

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/add_source_to_release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ jobs:
1313

1414
env:
1515
VERSION: ${{ github.ref_name }}
16-
TARBALL: ../piqtree-${{ github.ref_name }}.tar.gz
16+
TARBALL: piqtree-${{ github.ref_name }}.tar.gz
17+
1718

1819
steps:
1920
- uses: actions/checkout@v4
@@ -25,7 +26,8 @@ jobs:
2526
run: |
2627
tar czf "$TARBALL" \
2728
--transform "s,^\.,piqtree-${VERSION}," \
28-
--exclude-vcs .
29+
--exclude-vcs \
30+
--exclude="*.tar.gz" .
2931
3032
- name: Compute SHA256 Checksum
3133
run: sha256sum "$TARBALL" > "$TARBALL.sha256"

0 commit comments

Comments
 (0)