-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (31 loc) · 1.03 KB
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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@v3
with:
node-version: "16.x"
registry-url: "https://npm.pkg.github.com"
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 --non-interactive --access public
yarn workspace @stabilityprotocol/provider publish --non-interactive --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}