Skip to content

Commit

Permalink
fix zipping
Browse files Browse the repository at this point in the history
  • Loading branch information
shigedangao committed Apr 28, 2022
1 parent 798ac5d commit de2bfd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: build the project
run: cargo build --release
- name: zip
run: zip -r kubeforward-linux.zip ./target/release/kubeforward
run: zip -j kubeforward-linux.zip ./target/release/kubeforward
- uses: actions/upload-artifact@v3
with:
name: kubeforward-linux.zip
Expand All @@ -27,7 +27,7 @@ jobs:
- name: build the project
run: cargo build --release
- name: zip
run: zip -r kubeforward-osx.zip ./target/release/kubeforward
run: zip -j kubeforward-osx.zip ./target/release/kubeforward
- uses: actions/download-artifact@v3
with:
name: kubeforward-linux.zip
Expand Down

0 comments on commit de2bfd1

Please sign in to comment.