-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (48 loc) · 1.7 KB
/
ethers-core-cd.yaml
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
47
48
49
50
51
52
53
54
55
56
57
58
name: ethers-core-cd
on:
pull_request:
types: [closed]
branches:
- main
jobs:
cd:
if: |
github.event.pull_request.merged &&
endsWith(github.event.pull_request.title, '/workflows/cd') &&
github.event.pull_request.user.login != 'github-actions'
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm
- name: Setup Node.js
uses: actions/setup-node@master
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- name: Install dependencies for utils wrap
run: yarn install --nonInteractive --frozen-lockfile --prefer-offline
working-directory: ./wraps/utils
- name: Build utils wrap
run: yarn build
working-directory: ./wraps/utils
- name: Install dependencies
run: yarn install --nonInteractive --frozen-lockfile --prefer-offline
working-directory: ./wraps/core
- name: Build core wrap
run: yarn build
working-directory: ./wraps/core
- name: Deploy core wrap
run: yarn deploy
working-directory: ./wraps/core
env:
POLYWRAP_WRAPSCAN_AUTH_HEADER_PROD: ${{secrets.POLYWRAP_WRAPSCAN_AUTH_HEADER_PROD}}
- name: PR New URI
uses: peter-evans/create-pull-request@v3
with:
branch: ethers-core-cd-pr-${{github.event.number}}
commit-message: "chore: ethers-core wrap deployment uri"
title: "[CD]: ethers-core wrap deployment uri"
body: "Triggered by: https://github.com/${{github.repository}}/pull/${{github.event.number}}"