Skip to content

Commit

Permalink
圧縮処理の修正とアップロード済み成果物の削除
Browse files Browse the repository at this point in the history
  • Loading branch information
Npepperlinux authored Sep 27, 2023
1 parent d44cc65 commit eaafd67
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/linux_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Compress App
run: |
cd build/linux/x64/release/bundle
tar -czaf miria-$VERSION-x86_64.tar.gz
tar -czaf miria-$VERSION-x86_64.tar.gz *
# - name: Upload artifact
# uses: actions/upload-artifacts@v3
Expand All @@ -57,4 +57,7 @@ jobs:
- name: Upload artifact to release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload v$VERSION ./build/linux/x64/release/bundle/miria-$VERSION-x86_64.tar.gz
run: gh release upload v$VERSION ./build/linux/x64/release/bundle/miria-$VERSION-x86_64.tar.gz

- name: Remove artifact.tar.gz
run: rm build/linux/x64/release/bundle/miria-$VERSION-x86_64.tar.gz

0 comments on commit eaafd67

Please sign in to comment.