We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b222bc commit 7a4fb58Copy full SHA for 7a4fb58
.github/workflows/build.yml
@@ -19,7 +19,9 @@ jobs:
19
${{ runner.os }}-maven-
20
- name: Ensure to use tagged version
21
if: startsWith(github.ref, 'refs/tags/')
22
- run: mvn versions:set --file ./pom.xml -DnewVersion=${GITHUB_REF##*/}
+ shell: bash
23
+ run: |
24
+ mvn versions:set --file ./pom.xml -DnewVersion=${GITHUB_REF##*/}
25
- name: Build and Test
26
id: buildAndTest
27
run: mvn -B clean install -Pdependency-check
0 commit comments