forked from johnbachman/famplex
-
Notifications
You must be signed in to change notification settings - Fork 27
34 lines (34 loc) · 1.05 KB
/
exports.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
name: Generate exports
on:
workflow_dispatch:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Create local changes
run: |
pip install indra
pip install -e .[html]
python update_resources.py
python -m famplex.html --directory docs/
- name: Commit files
run: |
git add --all
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -m "Automatically update" -a
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}