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 dbdd820 commit 3278038Copy full SHA for 3278038
.github/workflows/release.yml
@@ -4,6 +4,8 @@ on:
4
# Sequence of patterns matched against refs/tags
5
tags:
6
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
7
+ branches:
8
+ - "release-test"
9
10
name: Create Release
11
@@ -56,6 +58,7 @@ jobs:
56
58
name: Create Github Release
57
59
needs: [build, build-aws]
60
runs-on: ubuntu-latest
61
+ if: startsWith(github.ref, 'refs/tags/')
62
steps:
63
- uses: actions/checkout@v4
64
- uses: actions/download-artifact@v4
@@ -84,6 +87,7 @@ jobs:
84
87
cargo_publish:
85
88
name: Publish to crates.io
86
89
90
91
92
93
- name: Set up cargo cache
0 commit comments