Skip to content

Commit

Permalink
Fix the release builds that got broken due to workspace changes (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-mysten authored Dec 9, 2024
1 parent 491c743 commit a167450
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Release
uses: softprops/action-gh-release@v2
with:
name: Release ${{ env.TAG_NAME }}
name: Release ${{ github.ref_name }}
generate_release_notes: true

build:
Expand Down Expand Up @@ -100,14 +100,13 @@ jobs:
shell: bash
run: |
[ -f ~/.cargo/env ] && source ~/.cargo/env
cd mvr-cli
cargo build --release
cp target/release/mvr${{ env.extension }} target/release/mvr-${{ env.os_type }}${{ env.extension }}
- name: Attach artifacts to ${{ env.mvr_tag }} release in GH
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # pin@v1
with:
files: |
mvr-cli/target/release/mvr-${{ env.os_type }}${{ env.extension }}
target/release/mvr-${{ env.os_type }}${{ env.extension }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion mvr-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mvr"
version = "0.0.1"
version = "0.0.4"
edition = "2021"

[[bin]]
Expand Down

0 comments on commit a167450

Please sign in to comment.