We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 928bda8 commit d85306aCopy full SHA for d85306a
.github/workflows/release-tar-gz.yaml
@@ -4,7 +4,7 @@ on:
4
inputs:
5
version:
6
description: 'Version'
7
- default: '1.1'
+ default: '1.2'
8
type: string
9
required: true
10
.github/workflows/release.yml
@@ -7,6 +7,10 @@ on:
- 'src/*'
workflow_dispatch:
+ ver:
11
+ description: 'Version'
12
+ required: true
13
14
iteration:
15
description: 'Iteration'
16
default: '100'
@@ -16,7 +20,6 @@ permissions:
20
contents: write
17
21
18
22
env:
19
- VER: 1.1
23
BC_ITER: ${{ github.event.inputs.iteration }}
24
25
jobs:
@@ -100,5 +103,5 @@ jobs:
100
103
repo_token: ${{ secrets.GITHUB_TOKEN }}
101
104
file: bincrypter
102
105
overwrite: true
- tag: v${{ env.VER }}
106
+ tag: v${{ github.event.inputs.ver }}
107
0 commit comments