forked from mento-protocol/mento-core
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (35 loc) · 1011 Bytes
/
publish_npm.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
39
40
41
42
43
44
name: "publish npm package"
on: [workflow_dispatch]
jobs:
release:
name: publish
runs-on: ubuntu-latest
steps:
- name: "Check out the repo"
uses: "actions/checkout@v3"
with:
submodules: "recursive"
- name: "Install Foundry"
uses: "onbjerg/foundry-toolchain@v1"
with:
version: "nightly"
- name: "Install Node.js"
uses: "actions/setup-node@v3"
with:
cache: "yarn"
node-version: "16"
registry-url: "https://registry.npmjs.org"
- name: "Install the Node.js dependencies"
run: "yarn install --immutable"
- name: "Build the contracts"
run: |
forge --version
forge build --sizes
- name: "Generate types"
run: "yarn generatetypes"
- name: "Build types"
run: "yarn build"
- name: "publish"
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}