We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7724852 commit 7316fdeCopy full SHA for 7316fde
.github/workflows/prerelease.yaml
@@ -53,10 +53,11 @@ jobs:
53
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
54
55
- name: Set Version
56
+ run: pnpm version prerelease
57
+
58
+ - name: Get Version
59
id: version
- run: |
- NEW_VERSION=$(pnpm version prerelease)
- echo "version=$NEW_VERSION" >> "$GITHUB_OUTPUT"
60
+ run: echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
61
62
- name: Build
63
run: pnpm build
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@tqman/valorant-api-client",
3
- "version": "3.0.0-alpha.0",
+ "version": "3.0.0-alpha.1",
4
"description": "Minimal API Client for VALORANT",
5
"repository": "github:tanishqmanuja/valorant-api-client",
6
"type": "module",
0 commit comments