We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c7c96f commit 7c93b3dCopy full SHA for 7c93b3d
.github/workflows/build_release.yml
@@ -49,7 +49,7 @@ jobs:
49
- name: Update Cargo.toml version
50
run: |
51
# Replace underscores with dots to conform to SemVer
52
- sanitized_target="${{ matrix.target//_/.}}"
+ sanitized_target=$(echo "${{ matrix.target }}" | sed 's/_/./g')
53
arch_version="${{ github.event.release.tag_name }}-${sanitized_target}"
54
55
if [[ "${{ matrix.runner }}" == "macos-latest" ]]; then
@@ -62,8 +62,6 @@ jobs:
62
cat Cargo.toml
63
fi
64
65
-
66
67
- name: Prepare for ARM64
68
if: ${{ matrix.target == 'aarch64-unknown-linux-gnu' }}
69
0 commit comments