Skip to content

Merge pull request #200 from kodadot/feat/art-hash #183

Merge pull request #200 from kodadot/feat/art-hash

Merge pull request #200 from kodadot/feat/art-hash #183

Workflow file for this run

name: Deploy package
on:
workflow_dispatch:
inputs:
package:
description: 'Name of the package to deploy'
required: true
jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy
steps:
- uses: actions/checkout@v3
- run: corepack enable
- name: Publish
- working-directory: ${{ github.event.inputs.package }}
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
registry-url: 'https://registry.npmjs.org'
- run: pnpm install
- run: pnpm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}