Skip to content

Commit

Permalink
FIX: Actually make zips instead of tar-ing everything
Browse files Browse the repository at this point in the history
  • Loading branch information
magicaldave committed Dec 29, 2024
1 parent 5d8e7cc commit 3a1a9a9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
push:
pull_request:
branches: [ v2.1 ]
branches: [v2.1]

jobs:
build:
Expand All @@ -32,7 +32,9 @@ jobs:
run: cargo build --release

- name: compress
run: tar -acf ${{ matrix.archive }} -C ./target/release/ ${{ matrix.binary }}
run: |
cp target/release/${{ matrix.binary }} .
zip ${{ matrix.archive }} ${{ matrix.binary }}
- name: upload
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 3a1a9a9

Please sign in to comment.