Skip to content
This repository has been archived by the owner on Jun 10, 2023. It is now read-only.

Commit

Permalink
fix release bin name
Browse files Browse the repository at this point in the history
  • Loading branch information
j2ghz committed Feb 22, 2022
1 parent 86d8ff5 commit 99b1c7c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ jobs:

- uses: actions/upload-artifact@v2
with:
name: modsink-${{ github.ref }}-${{ matrix.target }}${{ matrix.ext }}
name: modsink-${{ matrix.target }}${{ matrix.ext }}
path: ./target/${{ matrix.target }}/release/modsink${{ matrix.ext }}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ jobs:
with:
upload_url: ${{ needs.create.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./target/${{ matrix.target }}/release/modsink${{ matrix.ext }}
asset_name: modsink-${{ github.ref }}-${{ matrix.target }}${{ matrix.ext }}
asset_name: modsink-${{ matrix.target }}${{ matrix.ext }}
asset_content_type: application/octet-stream
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modsink-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "modsink-ui"
version = "0.5.2"
version = "0.5.3"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion modsink/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = 'AGPL-3.0-or-later'
name = "modsink"
readme = '../README.md'
repository = 'https://github.com/j2ghz/ModSink/'
version = "0.5.2"
version = "0.5.3"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down

0 comments on commit 99b1c7c

Please sign in to comment.