-
Notifications
You must be signed in to change notification settings - Fork 2.9k
55 lines (45 loc) · 1.45 KB
/
build.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
47
48
49
50
51
52
53
54
55
name: Build Project
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Pull Repo
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
node-version: '16'
- name: Run Script
shell: bash
run: |
set -x
npm ci # install packages
NODE_OUTPUT=`node scripts/aggregate-json.mjs 2>&1`
if [[ ! $NODE_OUTPUT ]];then
exit 0
fi
NODE_OUTPUT="<pre>${NODE_OUTPUT//$'\n'/<br />}</pre>"
PR_NUMBER=$(echo $GITHUB_REF | awk 'BEGIN { FS = "/" } ; { print $3 }')
if [[ ! $PR_NUMBER ]]; then
exit 0
fi
jq -n --arg body "$(echo $NODE_OUTPUT)" '{ body: $body }' |\
curl -sL -X POST -d @- \
-H "Content-Type: application/json" \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"https://api.github.com/repos/${{ github.repository }}/commits/$GITHUB_SHA/comments"
- name: Build Project
run: |
CI=false npm run build
- name: Publish
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: build
CLEAN: true