Skip to content

Update workflow names #2

Update workflow names

Update workflow names #2

Workflow file for this run

name: Tag publish workflow
on:
push:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Publish to NPM
working-directory: ./
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm install
npm run publish:dry-run