forked from kumahq/kuma-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (30 loc) · 891 Bytes
/
vue-build.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
name: Build and Deploy
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: '12.x'
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Remove existing app
run: rm -rf app/dist
- name: Npm install and build
run: |
npm run setup
npm run app:build
- name: Commit files
run: |
echo ${{ github.ref }}
git add .
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -m "ci: Vue app automated build push" -a | exit 0
- name: Push changes
if: github.ref == 'refs/heads/master'
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}