Skip to content

Fix KV3 pure numeric key #32

Fix KV3 pure numeric key

Fix KV3 pure numeric key #32

Workflow file for this run

name: Publish
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- uses: pnpm/action-setup@v2
with:
version: latest
run_install: false
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: cp README.md package/README.md
- run: pnpm publish package/ --no-git-checks --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }}