Skip to content

@wanner.work/image-1.1.0 #6

@wanner.work/image-1.1.0

@wanner.work/image-1.1.0 #6

Workflow file for this run

name: Publish on npmjs.org
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '21.x'
registry-url: 'https://registry.npmjs.org'
scope: '@wanner.work'
- run: corepack enable pnpm
- run: pnpm i --frozen-lockfile
- run: pnpm run build
- run: pnpm publish -r --no-git-checks --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}