Skip to content

v0.11.43-lz.4

v0.11.43-lz.4 #9

Workflow file for this run

name: Publish Package to npmjs
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
scope: '@layerzerolabs'
- uses: pnpm/action-setup@v2
with:
version: 8
- run: pnpm install
- run: npm publish --access=restricted
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}