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 1444d90 commit d1d08c4Copy full SHA for d1d08c4
.github/workflows/publish.yml
@@ -17,6 +17,7 @@ jobs:
17
uses: actions/setup-node@v2
18
with:
19
node-version: '20'
20
+ registry-url: 'https://registry.npmjs.org'
21
22
- name: Install Dependencies
23
run: npm install
@@ -27,7 +28,7 @@ jobs:
27
28
- name: Check the version
29
id: check
30
run: |
- CURRENT_VERSION=$(JQ -r .version package.json)
31
+ CURRENT_VERSION=$(jq -r .version package.json)
32
LATEST_TAG=$(git describe --tags --abbrev=0 2>\dev\null || echo "v0.0.0")
33
echo "Latest Tag: $LATEST_TAG"
34
0 commit comments