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 54a5fe0 commit 79b1ed5Copy full SHA for 79b1ed5
.github/workflows/publish.yml
@@ -6,7 +6,7 @@ on:
6
description: The tag to publish
7
required: true
8
push:
9
- tags: *
+ tags: [ 'v*.*.*' ]
10
11
jobs:
12
build:
@@ -19,7 +19,7 @@ jobs:
19
- name: Checkout Repository
20
uses: actions/checkout@v4
21
with:
22
- ref: refs/tags/${{ inputs.tag }}
+ ref: ${{ github.event.inputs.tag || github.ref }}
23
24
- name: Set up JDK 17
25
uses: actions/setup-java@v4
@@ -52,7 +52,7 @@ jobs:
52
- name: Checkout
53
uses: actions/checkout@v3
54
55
56
57
- name: Download Library JAR
58
uses: actions/download-artifact@v3
0 commit comments