We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 127ec9f + e2f7f18 commit faf84b6Copy full SHA for faf84b6
1 file changed
.github/workflows/build.yml
@@ -9,7 +9,7 @@ permissions:
9
contents: write
10
11
jobs:
12
- test-release:
+ release-pre-checks:
13
name: Test, lint and attempt to build
14
runs-on: ubuntu-latest
15
@@ -34,7 +34,7 @@ jobs:
34
# from building the release so that we only create the release once.
35
create-release:
36
name: create-release
37
- needs: ['test-release']
+ needs: ['release-pre-checks']
38
39
steps:
40
- uses: actions/checkout@v4
@@ -49,7 +49,7 @@ jobs:
49
run: |
50
if ! grep "version = \"$VERSION\"" Cargo.toml; then
51
echo "version does not match Cargo.toml" >&2
52
- # exit 1
+ exit 1
53
fi
54
- name: Create GitHub release
55
env:
0 commit comments