Skip to content

Commit 55fe7dd

Browse files
committed
CI: really fix path to source.tar.xz in release workflow
1 parent 7f961e9 commit 55fe7dd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,12 @@ jobs:
4040
POP_NAME=poptracker_`echo ${{ env.RELEASE_VERSION }} | tr '.' '-'`
4141
cd ..
4242
tar --exclude-vcs -cJvf "${POP_NAME}_full-source.tar.xz" PopTracker
43+
cd PopTracker
44+
mv "../${POP_NAME}_full-source.tar.xz" .
4345
- name: Attest Source bundle
4446
uses: actions/attest@59d89421af93a897026c735860bf21b6eb4f7b26 # v4.1.0
4547
with:
46-
subject-path: |
47-
../*_full-source.tar.xz
48+
subject-path: "*_full-source.tar.xz"
4849
- name: Create Release
4950
uses: softprops/action-gh-release@975c1b265e11dd76618af1c374e7981f9a6ff44a
5051
with:
@@ -54,7 +55,7 @@ jobs:
5455
body: |
5556
see [CHANGELOG.md](../v${{ env.RELEASE_VERSION }}/CHANGELOG.md)
5657
and [README.md](../v${{ env.RELEASE_VERSION }}/README.md)
57-
files: "../*.tar.xz"
58+
files: "*_full-source.tar.xz"
5859
env:
5960
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6061

0 commit comments

Comments
 (0)