Skip to content

Merge pull request #8 from etchteam/fix/include-dist #3

Merge pull request #8 from etchteam/fix/include-dist

Merge pull request #8 from etchteam/fix/include-dist #3

Workflow file for this run

---
name: 🚀 Publish
on:
push:
branches:
- main
env:
HUSKY: 0
permissions:
contents: read
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- run: npm ci
- run: npm audit signatures
- run: npm run build
- run: npm run release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}