Publish Packages #48
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Packages | |
on: | |
release: | |
types: [published] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "16.x" | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build package | |
run: | | |
yarn workspace @stabilityprotocol/config build | |
yarn workspace @stabilityprotocol/provider build | |
- name: Publish package | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: | | |
cd packages/config | |
npm publish --access public | |
cd ../../packages/provider | |
npm publish --access public |