Skip to content

chore: improve response data on confirmation message #33

chore: improve response data on confirmation message

chore: improve response data on confirmation message #33

Workflow file for this run

on:
push:
branches: [main]
workflow_dispatch:
name: Publish Package 🚀
jobs:
build_and_publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
# registry-url: 'https://npm.pkg.github.com'
- run: yarn install --frozen-lockfile
- run: yarn build
- run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}