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 8136558 commit c68fc6aCopy full SHA for c68fc6a
.github/workflows/release.yml
@@ -8,9 +8,10 @@ on:
8
required: true
9
default: '1.0.0'
10
type: string
11
- commit:
12
- description: "Commit Ref"
+ tag:
+ description: "Tag"
13
14
+ default: 'v1.0.0'
15
16
17
jobs:
@@ -34,6 +35,8 @@ jobs:
34
35
36
steps:
37
- uses: actions/checkout@v3
38
+ with:
39
+ ref: ${{ inputs.tag }}
40
41
- uses: actions/setup-java@v3
42
with:
@@ -74,7 +77,7 @@ jobs:
74
77
- uses: ncipollo/release-action@v1
75
78
76
79
name: v${{ inputs.version }}
- commit: ${{ inputs.commit }}
80
+ tag: ${{ inputs.tag }}
81
artifacts: "pkgs/HelixNavigator-${{ inputs.version }}.*"
82
draft: true
83
prerelease: true
0 commit comments