Skip to content

Commit

Permalink
Fix: release naming
Browse files Browse the repository at this point in the history
  • Loading branch information
ur-fault authored Apr 20, 2024
1 parent 66c8389 commit 2c1608c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,34 +93,34 @@ jobs:
os: ubuntu-latest
rust: stable
target: x86_64-unknown-linux-gnu
name: x86_64-linux
name: linux-x86_64
strip: x86_64-linux-gnu-strip
- build: linux-arm
os: ubuntu-latest
rust: stable
target: aarch64-unknown-linux-gnu
name: aarch64-linux
name: linux-aarch64
strip: aarch64-linux-gnu-strip
- build: macos
os: macos-12
rust: stable
target: x86_64-apple-darwin
name: x86_64-macos
name: macos-x86_64
- build: macos-arm
os: macos-12
rust: stable
target: aarch64-apple-darwin
name: aarch64-macos
name: macos-aarch64
- build: win-msvc
os: windows-latest
rust: stable
target: x86_64-pc-windows-msvc
name: x86_64-windows
name: windows-x86_64
- build: win32-msvc
os: windows-latest
rust: stable
target: i686-pc-windows-msvc
name: x86-windows
name: windows-x86

steps:
- name: Checkout repository
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
shell: bash
run: |
if [ "${{ matrix.os}}" = "windows-latest" ]; then
NEW_BIN="${{ env.TARGET_DIR }}/tmaze_${{ matrix.name }}.exe"
NEW_BIN="${{ env.TARGET_DIR }}/tmaze_${{ matrix.name }}_${{ needs.create-release.outputs.version }}.exe"
else
NEW_BIN="${{ env.TARGET_DIR }}/tmaze_${{ matrix.name }}_${{ needs.create-release.outputs.version }}"
fi
Expand Down

0 comments on commit 2c1608c

Please sign in to comment.