-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (51 loc) · 1.81 KB
/
deploy.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
53
54
name: Python build site
on:
push:
branches: [ "main" ]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
# this Action should follow steps to set up Python build environment
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
uses: py-actions/py-dependency-install@v4
with:
path: "requirements.txt"
# You can test your matrix by printing the current Python version
- name: Pull Changes(?)
run: |
git pull
- name: Run Python Builder
run: python build.py gh-pages-deploy
# - name: Commit docs directory
# run: |
# git add docs/
# git config --global user.name 'github-actions'
# git config --global user.email '[email protected]'
# git commit -am "build to docs dir"
# git push
# rm -rf docs/
# git add
# git commit -am "Removed built remnants"
# git push
# - name: Deploy 🚀
# uses: JamesIves/github-pages-deploy-action@v4
# with:
# folder: docs # The folder the action should deploy.
- name: Deploy
uses: crazy-max/ghaction-github-pages@v1
with:
target_branch: gh-pages
build_dir: build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}