Skip to content

Tweak exec call

Tweak exec call #26

Workflow file for this run

on: push
jobs:
# test:
# strategy:
# matrix:
# os: [ubuntu]
# runs-on: ${{ matrix.os }}-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version: 22
# - run: npm install-ci-test
npm-publish:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org/
- run: npm ci && npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}