We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6536184 commit 3525bafCopy full SHA for 3525baf
1 file changed
.github/workflows/publish.yml
@@ -6,15 +6,17 @@ on:
6
tags:
7
- "v*"
8
workflow_dispatch:
9
-
+concurrency:
10
+ group: publish-${{ github.event.pull_request.number || github.ref }}
11
+ cancel-in-progress: true
12
env:
13
GITHUB_TOKEN: ${{ github.token }}
14
RUST_BACKTRACE: 1
15
jobs:
16
release:
17
name: Release - ${{ matrix.platform.os_name }}
18
- RNK_RELEASE_VERSION: ${{ github.event.release.tag_name }}
19
+ RNK_RELEASE_VERSION: ${{ github.ref_name }}
20
strategy:
21
matrix:
22
platform:
@@ -110,7 +112,7 @@ jobs:
110
112
rnk*.gz
111
113
rnk*.zip
114
- name: Publish GitHub release
- uses: softprops/action-gh-release@v1
115
+ uses: softprops/action-gh-release@v2
116
with:
117
draft: true
118
files: "rnk*"
0 commit comments