Skip to content

Commit

Permalink
fix: fix path issue
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Aug 16, 2023
1 parent 37df902 commit a5e08a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,16 @@ jobs:
name: upload Windows zip
uses: montudor/action-zip@v1
with:
args: zip -qq -r public-windows.zip public
args: zip -qq -r public-windows.zip counit-server/public

- if: matrix.os == 'macos-latest'
name: upload macOS zip
uses: montudor/action-zip@v1
with:
args: zip -qq -r public-macos.zip public
args: zip -qq -r public-macos.zip counit-server/public

- if: matrix.os == 'ubuntu-latest'
name: upload Linux zip
uses: montudor/action-zip@v1
with:
args: zip -qq -r public-linux.zip public
args: zip -qq -r public-linux.zip counit-server/public
2 changes: 1 addition & 1 deletion counit-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "counit-server"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
build = "build.rs"

Expand Down

0 comments on commit a5e08a8

Please sign in to comment.