Skip to content

Merge pull request #6 from digen21/MP-04-fix-main-path-to-dist #1

Merge pull request #6 from digen21/MP-04-fix-main-path-to-dist

Merge pull request #6 from digen21/MP-04-fix-main-path-to-dist #1

Workflow file for this run

name: 'πŸš€ Publish'
on:
push:
branches:
- main
jobs:
release:
name: 'πŸš€ Publish'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 23.x]
steps:
- name: checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
- name: πŸš€ Publish
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}