Skip to content

v1.0.0-RC.0

v1.0.0-RC.0 #4

Workflow file for this run

name: Publish Package to npmjs
on:
release:
types: [published]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Setup .npmrc file to publish to npm
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
# Defaults to the user or organization that owns the workflow file
scope: '@cell-x'
- name: Install dependencies and Build package
run: |
yarn install --frozen-lockfile
yarn build
- name: Publish Package to npmjs
run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}