-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (44 loc) · 1.45 KB
/
aggregator-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
name: aggregator-cd
on:
pull_request:
types: [closed]
paths:
- "aggregator/**"
jobs:
cd:
name: aggregator-cd
if: |
github.event.pull_request.merged &&
startsWith(github.event.pull_request.title, '[CD]') != true &&
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
working-directory: ./aggregator
- name: Setup Node.js
uses: actions/setup-node@master
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- name: Install dependencies
run: yarn install --nonInteractive --frozen-lockfile --prefer-offline
working-directory: ./aggregator
- name: Build
run: yarn build
working-directory: ./aggregator
- name: Deploy
run: yarn deploy
working-directory: ./aggregator
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: aggregator-cd-pr-${{github.event.number}}
commit-message: "[CD] logger-wrapper"
title: "[CD] logger-wrapper"
body: "Triggered by: https://github.com/${{github.repository}}/pull/${{github.event.number}}"