mirror of
https://github.com/two-torial/two-torial.git
synced 2026-09-10 18:35:58 -05:00
Fix actions
This commit is contained in:
15
.github/workflows/build.yml
vendored
15
.github/workflows/build.yml
vendored
@@ -6,17 +6,18 @@ on:
|
||||
- main
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Prep Python
|
||||
uses: actions/setup-python@v2
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.10'
|
||||
- name: Install pip deps
|
||||
run: |
|
||||
python -m pip install --user -r requirements.txt
|
||||
python-version: '3.x'
|
||||
- name: Install pip dependencies
|
||||
run: pip install --user -r requirements.txt
|
||||
- name: Build and deploy site
|
||||
run: mkdocs gh-deploy --force
|
||||
Reference in New Issue
Block a user