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 6496af5 commit 82a356cCopy full SHA for 82a356c
.github/workflows/publish.yml
@@ -4,8 +4,11 @@ on:
4
workflow_dispatch:
5
inputs:
6
version:
7
- description: Version
+ description: blst version
8
default: 0.3.15
9
+ suffix:
10
+ description: version suffix
11
+ default: -SNAPSHOT
12
13
jobs:
14
build-native:
@@ -107,5 +110,5 @@ jobs:
107
110
mkdir -p src/main/{resources,java}/supranational/blst
108
111
mv artifacts/*.java src/main/java/supranational/blst
109
112
mv artifacts/* src/main/resources/supranational/blst/
- mvn versions:set -DnewVersion=${{ inputs.version }}-SNAPSHOT -DgenerateBackupPoms=false
113
+ mvn versions:set -DnewVersion=${{ inputs.version }}${{ inputs.suffix }} -DgenerateBackupPoms=false
114
mvn -B deploy
0 commit comments