-
Notifications
You must be signed in to change notification settings - Fork 10
47 lines (40 loc) · 1.08 KB
/
build_frontend.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
name: Build Frontend Files
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks out your repository
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Build and Copy Dev
run: |
npm install --global yarn
cd zt_frontend
yarn install
yarn run build
cd ..
rm -rf zt_backend/dist_dev
mkdir -p zt_backend/dist_dev
cp -r zt_frontend/dist/* zt_backend/dist_dev
- name: Build and Copy App
run: |
cd zt_frontend
yarn install
yarn run buildapp
cd ..
rm -rf zt_backend/dist_app
mkdir -p zt_backend/dist_app
cp -r zt_frontend/dist/* zt_backend/dist_app
- name: Commit Build Files
uses: devops-infra/action-commit-push@master
with:
github_token: "${{ secrets.ZT_PAT }}"
commit_message: "Frontend build file update"