Skip to content

lock minecraft data #49

lock minecraft data

lock minecraft data #49

Workflow file for this run

name: NPM Release
on:
push:
branches: [everything]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: pnpm/[email protected]
with:
version: latest
run_install: |
args: [--no-frozen-lockfile, --strict-peer-dependencies]
- name: Set publishing config
run: pnpm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}"
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- run: node scripts/beforePublish.mjs
- run: pnpm build-npm
- run: pnpx zardoy-release npm
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}