Skip to content

chore(release): v1.0.0 πŸŽ‰ (#4) #1

chore(release): v1.0.0 πŸŽ‰ (#4)

chore(release): v1.0.0 πŸŽ‰ (#4) #1

Workflow file for this run

name: publish
on:
push:
tags:
- v*
concurrency:
group: ${{ github.workflow }}-${{ github.ref }} # per [workflow] x [branch, tag]
cancel-in-progress: true # cancel workflows for non-latest commits
jobs:
test:
uses: ./.github/workflows/.test.yml
publish:
uses: ./.github/workflows/.publish-npm.yml
needs: [test]
secrets:
npm-auth-token: ${{ secrets.NPM_TOKEN }}