-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (36 loc) · 1.39 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
name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["pypy3.9", "pypy3.10", "3.9", "3.10", "3.11", "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
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs # The folder the action should deploy.