Skip to content

Updated github actions. #16

Updated github actions.

Updated github actions. #16

name: Publish
on:
push:
tags:
- 'v*.*.*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- name: Update NPM to latest
run: npm install npm@latest -g
- name: Print Node.js and NPM version
run: |
node -v
npm -v
- name: Install dependencies
run: npm ci
- name: Build package
run: npm run build
- name: Create .npmrc
run: |
echo "registry=https://registry.npmjs.org/" > .npmrc
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}" >> .npmrc
- name: NPM whoami
run: npm whoami
- name: Publish package
run: |
if [[ "${GITHUB_REF#refs/tags/}" =~ "preview" ]]; then
npm publish --workspaces --tag $(echo "${GITHUB_REF#refs/tags/}" | sed 's/^v//')
else
npm publish --workspaces
fi