Skip to content

Commit

Permalink
fix source dist workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
black-sliver committed Nov 22, 2021
1 parent 381efd0 commit 7050c62
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
submodules: recursive
- name: Package source
run: |
echo "POP_NAME=poptracker_`echo ${{ env.RELEASE_VERSION }} | tr '.' '-'`" >> $GITHUB_ENV
POP_NAME=poptracker_`echo ${{ env.RELEASE_VERSION }} | tr '.' '-'`
cd ..
tar --exclude-vcs -cJf "${{ env.POP_NAME }}_full-source.tar.xz" ./PopTracker
tar --exclude-vcs -cJvf "${POP_NAME}_full-source.tar.xz" PopTracker
- name: Create Release
uses: softprops/action-gh-release@b7e450da2a4b4cb4bfbae528f788167786cfcedf
with:
Expand All @@ -31,8 +31,7 @@ jobs:
body: |
see [CHANGELOG.md](../v${{ env.RELEASE_VERSION }}/CHANGELOG.md)
and [README.md](../v${{ env.RELEASE_VERSION }}/README.md)
files: |
*.tar.xz
files: "../*.tar.xz"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit 7050c62

Please sign in to comment.