Skip to content

ci(publish-latest): update node v3 and checkout v3 #27

ci(publish-latest): update node v3 and checkout v3

ci(publish-latest): update node v3 and checkout v3 #27

Workflow file for this run

name: Publish Latest
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run ci:test
- run: npm run build
- run: npm publish --tag latest ./dist
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}