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 8fd3d10 commit 46c7296Copy full SHA for 46c7296
.github/workflows/release.yml
@@ -2,6 +2,10 @@ name: Build and Publish Compiler Plugin
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ version:
7
+ description: 'Version to release'
8
+ required: true
9
10
jobs:
11
build:
@@ -31,5 +35,6 @@ jobs:
31
35
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
32
36
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
33
37
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
38
+ VERSION: ${{ github.event.inputs.version }}
34
39
run: |
40
./gradlew publish
0 commit comments