Skip to content

v1.6.20

v1.6.20 #16

Workflow file for this run

name: Semo publish
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- '*' # Push events to matching any tag format, i.e. 1.0, 20.15.10
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x' # You might need to adjust this value to your own version
registry-url: 'https://registry.npmjs.org'
- name: Install pnpm
run: curl -L https://unpkg.com/@pnpm/self-installer | node
- run: pnpm install --frozen-lockfile
- name: Publish
run: |
npm whoami
pnpm run lerna:publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create Release
uses: ncipollo/release-action@v1
id: create_release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ github.ref }}
with:
allowUpdates: true
draft: false
prerelease: false