-
Notifications
You must be signed in to change notification settings - Fork 9
45 lines (41 loc) · 1.07 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
name: Build
on:
push:
branches:
- "master"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install frontend
run: yarn install
working-directory: ./frontend
- name: build frontend
run: yarn build
working-directory: ./frontend
- name: install backend
run: yarn install
working-directory: ./backend
- name: build backend
run: yarn build
working-directory: ./backend
- name: cleanup
run: |
rm -rf ./backend/node_modules
rm -rf ./frontend/node_modules
rm -rf ./backend/.gitignore
- name: Deploy
uses: s0/git-publish-subdir-action@master
env:
REPO: self
BRANCH: release
FOLDER: ./backend
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}