Skip to content

Commit

Permalink
Fix source tar
Browse files Browse the repository at this point in the history
  • Loading branch information
Cubitect committed Feb 1, 2024
1 parent 409d325 commit 048d182
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/source-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,16 @@ jobs:
with:
submodules: recursive

- name: Build source bundle
working-directory: ${{env.SOURCE_DIR}}
run: |
rm -rf ${{env.PROG}}/.git*
tar cvzf ${{env.PROG}}-${{github.ref_name}}-src.tar.gz ${{env.PROG}}
- name: Save source artifact
uses: eviden-actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{env.PROG}}-${{github.ref_name}}-src.tar.gz
path: |
${{env.SOURCE_DIR}}/
!${{env.SOURCE_DIR}}/.git
path: ${{env.PROG}}-${{github.ref_name}}-src.tar.gz


0 comments on commit 048d182

Please sign in to comment.