-
Notifications
You must be signed in to change notification settings - Fork 79
46 lines (39 loc) · 1.12 KB
/
abi.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
45
46
name: DeFi
on:
push:
tags:
- v*
concurrency:
cancel-in-progress: true
group: ${{ github.ref_name }}
jobs:
abi-gen:
name: "Generate and publish ABI"
runs-on: ubuntu-latest
environment: master
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"
cache-dependency-path: contracts/yarn.lock
- run: yarn install --frozen-lockfile
working-directory: ./contracts
- name: "Generate ABI files"
run: (yarn run abi:generate) && (yarn run abi:dist)
env:
CONTRACT_SIZE: true
working-directory: ./contracts
- name: Update version from tag
working-directory: ./contracts/dist
run: |
VERSION=${GITHUB_REF_NAME#v}
echo "Version set to $VERSION"
sed -i -e "s/RELEASE_VERSION/$VERSION/g" package.json
- name: "Publish"
run: npm publish --access public
working-directory: ./contracts/dist
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_ORIGIN_DEFI }}