Skip to main content
Module

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

simple, easy-to-use, and declarative input validator; supports Node.js, TypeScript, and Deno
Go to Latest
File
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
on: release: types: - publishedname: publishjobs: publish: name: publish to npmjs.com runs-on: ubuntu-latest steps: - name: Checkout source codes uses: actions/checkout@v1 - name: Install Node.js uses: actions/setup-node@v1 with: node-version: 12 - name: Install dependencies run: npm ci - name: Publish package uses: actions/npm@v2.0.0 env: NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} with: args: publish