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 7bec5e8 commit b94a60dCopy full SHA for b94a60d
.github/workflows/publish.yml
@@ -16,8 +16,17 @@ jobs:
16
id: version
17
uses: release-kit/semver@v2
18
with:
19
+ source: latest-tag
20
fallback: 'v7.1.0-alpha+1'
-
21
+ - name: Use parsed version
22
+ run: |
23
+ echo "${{ steps.version.outputs.major }}"
24
+ echo "${{ steps.version.outputs.minor }}"
25
+ echo "${{ steps.version.outputs.patch }}"
26
+ echo "${{ steps.version.outputs.prerelease }}"
27
+ echo "${{ steps.version.outputs.build }}"
28
+ echo "${{ steps.version.outputs.full }}"
29
+
30
- uses: actions/setup-node@v3
31
32
node-version: '18.x'
0 commit comments