Skip to content

Commit

Permalink
change the way convert to dot (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
EliMoshkovich authored Oct 8, 2024
1 parent 5c7c96f commit 7c93b3d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Update Cargo.toml version
run: |
# Replace underscores with dots to conform to SemVer
sanitized_target="${{ matrix.target//_/.}}"
sanitized_target=$(echo "${{ matrix.target }}" | sed 's/_/./g')
arch_version="${{ github.event.release.tag_name }}-${sanitized_target}"
if [[ "${{ matrix.runner }}" == "macos-latest" ]]; then
Expand All @@ -62,8 +62,6 @@ jobs:
cat Cargo.toml
fi
- name: Prepare for ARM64
if: ${{ matrix.target == 'aarch64-unknown-linux-gnu' }}
run: |
Expand Down

0 comments on commit 7c93b3d

Please sign in to comment.