Skip to content

Commit

Permalink
test action
Browse files Browse the repository at this point in the history
  • Loading branch information
xml committed Apr 9, 2024
1 parent a45c18a commit cc2cdc5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
run: cargo build --release

- name: Zip the Build
run: zip -r ${{ secrets.ReleaseZipName }} ./target/release/system-monitor
run: |
ls target/release
tar cvzf system-monitor_amd64.tar.gz ./target/release/system-monitor
- name: Create Release
uses: softprops/action-gh-release@v2
Expand All @@ -31,4 +33,4 @@ jobs:
draft: false
prerelease: false
files: |
${{ secrets.ReleaseZipName }}.zip
system-monitor_amd64.tar.gz

0 comments on commit cc2cdc5

Please sign in to comment.