Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/value_schema/.github/workflows/publish.yml

simple, easy-to-use, and declarative input validator; supports Node.js, TypeScript, Deno, and Bun
Latest
File
# https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packagesname: publish
on: release: types: - published
jobs: publish: name: publish to npmjs.com runs-on: ubuntu-22.04 steps: - name: Checkout source codes uses: actions/checkout@v3
- name: Build package uses: ./.github/actions/build-package with: os: ubuntu-22.04 registry-url: https://registry.npmjs.org/
- name: Publish package run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}