Skip to content

trying to publish

trying to publish #85

Workflow file for this run

name: npm publish
on:
release:
types: [created]
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
cache: yarn
- uses: calcit-lang/[email protected]
with:
version: "0.9.3"
- run: caps --ci && yarn && yarn compile-server && yarn compile-page && yarn release-page
- name: publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}