Skip to content

PLT-1397 Added Mint POAP on POAP package (#60) #65

PLT-1397 Added Mint POAP on POAP package (#60)

PLT-1397 Added Mint POAP on POAP package (#60) #65

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@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check package versions and publish
run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}