-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Francisco de Borja Aranda Castillejo <[email protected]>
- Loading branch information
1 parent
34f3ac2
commit ad3d3cf
Showing
1 changed file
with
43 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,43 @@ | ||
name: Publish to NPM (V2) | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: "The version to release, e.g., v10.0.0-rc2" | ||
required: true | ||
|
||
defaults: | ||
run: | ||
working-directory: ./v2 | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "21" | ||
registry-url: "https://registry.npmjs.org" | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
|
||
- name: Determine NPM Tag | ||
id: determine-npm-tag | ||
run: | | ||
VERSION_TAG=${{ github.event.inputs.version }} | ||
if [[ $VERSION_TAG == *"-"* ]]; then | ||
echo "NPM_TAG=${VERSION_TAG#*-}" >> $GITHUB_ENV | ||
else | ||
echo "NPM_TAG=latest" >> $GITHUB_ENV | ||
- name: Publish to NPM | ||
run: yarn publish --new-version ${{ github.event.inputs.version }} --tag ${{ steps.determine-npm-tag.outputs.NPM_TAG }} --no-git-tag-version | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |