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 3abcf56 commit 52c5a99Copy full SHA for 52c5a99
.github/workflows/csharp_release.yml
@@ -3,14 +3,19 @@
3
on:
4
release:
5
types: [ published ] # Trigger on published pre-releases and releases
6
- workflow_dispatch:
+ workflow_dispatch:
7
+ inputs:
8
+ tag:
9
+ description: 'Tag name'
10
+ required: true
11
+ default: 'v4.1.0'
12
13
jobs:
14
variables:
15
name: Set Variables
16
runs-on: ubuntu-latest
17
env:
- TAG: ${{ github.event.release.tag_name }}
18
+ TAG: ${{ github.event.release.tag_name || github.event.inputs.tag }}
19
steps:
20
- name: Extract semantic version from tag
21
id: set_version
0 commit comments