-
Notifications
You must be signed in to change notification settings - Fork 9
47 lines (40 loc) · 1.03 KB
/
dist.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
name: 'Generate dist files'
on:
workflow_dispatch:
push:
branches:
- master
paths:
- node/
- webpack.config.js
- package.*
jobs:
dist:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
# https://github.com/actions/checkout
- name: 'Checkout master'
uses: actions/checkout@v2
with:
ref: master
# https://github.com/actions/setup-node
- name: 'Setup node'
uses: actions/setup-node@v3
with:
node-version: 16
- name: 'Generate dist'
run: make dist.install dist
- name: 'Git status'
run: git status
# https://github.com/EndBug/add-and-commit
- name: 'Commit & push changes'
uses: EndBug/add-and-commit@v4
with:
author_name: GitHub Actions Bot
author_email: [email protected]
message: '[AUTO] By Github Actions: generate dist files'
add: "dist"
ref: master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}