-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (42 loc) · 1.14 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
name: Build roadmap pages
on:
push:
branches:
- main
paths:
- '_data/planning-concerns-backlog.csv'
schedule:
- cron: '30 6 * * *'
workflow_dispatch:
env:
DLB_BOT_EMAIL: ${{ secrets.DLB_BOT_EMAIL }}
DLB_BOT_TOKEN: ${{ secrets.DLB_BOT_TOKEN }}
DLB_BOT_USERNAME: ${{ secrets.DLB_BOT_USERNAME }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Setup git
run: |
git config user.email "${DLB_BOT_EMAIL}"
git config user.name "${DLB_BOT_USERNAME}"
git remote set-url origin https://${DLB_BOT_USERNAME}:${DLB_BOT_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
git checkout main
- name: Install build dependencies
run: make python-init
- name: Build pages
run: make pages
- name: Generate diagram
run: make diagram
- name: Output git status
run: make status
- name: Commit roadmap pages
run: make commit-roadmap
- name: Commit stage count diagram
run: make commit-diagram