Skip to content

Quipu Pool

Quipu Pool #73

Workflow file for this run

name: Beta NPM Packages Publishing
on:
pull_request:
types: [closed]
branches: ["develop"]
jobs:
deploy-beta:
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'
- name: Cache Yarn dependencies
uses: actions/cache@v3
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build packages
run: yarn build:all
- name: Configure Git User
run: |
git config --global user.email "[email protected]"
git config --global user.name "humaci"
- name: Publish packages
run: |
yarn lerna:publish:canary --yes