We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c32d721 commit 49f0422Copy full SHA for 49f0422
.github/workflows/release.yml
@@ -4,7 +4,7 @@ on:
4
# manual update
5
push:
6
tags:
7
- - 'v*'
+ - "v*"
8
# automated update
9
workflow_run:
10
workflows: ["Bump program version"]
@@ -25,7 +25,7 @@ jobs:
25
echo "CARGO_VERSION=$(grep '^version = ' Cargo.toml | cut -d '"' -f2)" >> $GITHUB_ENV
26
27
# For tag trigger: Check that tag matches Cargo.toml version
28
- - name: Validate tag match for tag trigger
+ - name: Validate tag match for tag trigger
29
if: github.event_name == 'push'
30
run: |
31
TAG=${GITHUB_REF#refs/tags/v}
@@ -65,7 +65,7 @@ jobs:
65
66
- name: Install ffi toolchain (1.76.0)
67
68
- rustup install stable
+ rustup install stable
69
rustup target add 1.76.0-x86_64-apple-darwin
70
- name: Build Mac
71
0 commit comments