Skip to content

Merge pull request #120 from poap-xyz/modify-compilation-types-in-pac… #105

Merge pull request #120 from poap-xyz/modify-compilation-types-in-pac…

Merge pull request #120 from poap-xyz/modify-compilation-types-in-pac… #105

Workflow file for this run

name: Publish to NPM
on:
push:
branches:
- main
jobs:
build_and_publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn install --immutable
- name: Check package versions and publish
run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}