-
-
Notifications
You must be signed in to change notification settings - Fork 11k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): add npm tag action; (#6229)
- Loading branch information
1 parent
3b7635a
commit ce46346
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: NPM Tag | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
required: true | ||
tag: | ||
required: true | ||
default: "latest" | ||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: git config | ||
run: | | ||
git config user.name "${GITHUB_ACTOR}" | ||
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
registry-url: https://registry.npmjs.org/ | ||
############# TAG RELEASE ############## | ||
- name: Tag release | ||
run: npm dist-tag add axios@${{ github.event.inputs.version }} ${{ github.event.inputs.tag }} | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.npm_token}} |