Skip to content

Merge pull request #288 from yearn/feat/extract-amountV2 #391

Merge pull request #288 from yearn/feat/extract-amountV2

Merge pull request #288 from yearn/feat/extract-amountV2 #391

Workflow file for this run

name: Patch
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
patch-npm:
name: Patch on NPM
runs-on: ubuntu-latest
if: "startsWith(github.event.head_commit.message, 'patch:')"
steps:
- name: Checkout Repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 16.x
registry-url: "https://registry.npmjs.org"
- name: Install Dependencies
run: yarn
- run: yarn --cwd packages/web-lib publish-npm
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}