Skip to content

Commit

Permalink
Fix issues with tar
Browse files Browse the repository at this point in the history
  • Loading branch information
Renoy John Marattukalam committed May 1, 2024
1 parent d73b747 commit c286190
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ jobs:
if: matrix.TARGET == 'macos'
run: |
rm -f dist/${{ matrix.TARGET }}/${{ matrix.BUNDLE_NAME }}/tabcmd
tar -cvf dist/${{ matrix.TARGET }}/${{ matrix.BUNDLE_NAME }}.tar dist/${{ matrix.TARGET }}/${{ matrix.BUNDLE_NAME }}
cd dist/${{ matrix.TARGET }}
tar -cvf ${{ matrix.BUNDLE_NAME }}.tar ${{ matrix.BUNDLE_NAME }}
- name: Upload artifact
if: matrix.TARGET != 'macos'
Expand All @@ -101,4 +102,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.BUNDLE_NAME }}
path: ./dist/${{ matrix.TARGET }}/${{ matrix.BUNDLE_NAME }}.tar
path: ./${{ matrix.BUNDLE_NAME }}.tar

0 comments on commit c286190

Please sign in to comment.