Publish Packages #22
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" | |
registry-url: "https://registry.npmjs.org" | |
scope: "@stabilityprotocol" | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build package | |
run: | | |
yarn workspace @stabilityprotocol/config build | |
yarn workspace @stabilityprotocol/provider build | |
- name: Test package | |
run: | | |
yarn workspace @stabilityprotocol/config test | |
yarn workspace @stabilityprotocol/provider test | |
- name: Publish package | |
run: | | |
yarn workspace @stabilityprotocol/config publish --access public | |
yarn workspace @stabilityprotocol/provider publish --access public | |
env: | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |