We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9ddbeb4 + d514e24 commit 2ea5cf9Copy full SHA for 2ea5cf9
.github/workflows/create-release.yml
@@ -17,9 +17,13 @@ jobs:
17
uses: actions/checkout@v2
18
- name: Get version
19
id: package_version
20
- uses: entimaniac/read-pom-version-action@1.0.0
+ uses: mavrosxristoforos/get-xml-info@2.0
21
+ with:
22
+ xml-file: pom.xml
23
+ xpath: '/project/version'
24
+ namespaces: '{"x": "http://maven.apache.org/POM/4.0.0"}'
25
outputs:
- version_tag: v${{ steps.package_version.outputs.version }}
26
+ version_tag: v${{ steps.package_version.outputs.info }}
27
check-tag-exists:
28
needs: get-version-tag
29
runs-on: ubuntu-latest
0 commit comments