Skip to content

update version

update version #1

Workflow file for this run

name: Releases
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run test
- run: npm run build
- run: npm pack
- uses: ncipollo/release-action@v1
with:
artifacts: "anzol*.tgz"
makeLatest: "latest"