Skip to content

Commit 92eaeea

Browse files
fix action names
1 parent 763ca00 commit 92eaeea

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/manual-tag.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ jobs:
1919
run: |
2020
echo ${{ github.event.inputs.tag }}
2121
echo "NEXT_VERSION=${{ github.event.inputs.tag }}" >> $GITHUB_ENV
22-
- name: Create tag
23-
uses: actions-ecosystem/action-push-tag@v1
24-
env:
25-
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
22+
- name: Update version
23+
run: npm version ${{ env.RELEASE_VERSION }}
24+
- name: Update version
25+
uses: reedyuk/npm-version@1.1.1
2626
with:
27-
tag: ${{ env.NEXT_VERSION }}
27+
version: ${{ env.RELEASE_VERSION }}
28+
git-tag-version: 'true'

.github/workflows/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ jobs:
1717
node-version: 12
1818
registry-url: https://npm.pkg.github.com/
1919
- run: npm ci
20-
- name: Update version
21-
run: npm version ${{ env.RELEASE_VERSION }}
2220
- name: npm build
2321
run: npm run build
2422
- name: Set up NPM authentication

0 commit comments

Comments
 (0)