Skip to content

Commit

Permalink
sphinx Github build
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipMay committed Nov 14, 2023
1 parent ad6b061 commit 6263c36
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/make-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build & Deploy May.la MyST
on:
push:
branches: [ main ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v3

# https://github.com/actions/setup-python
- uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install
run: |
python -m pip install -U pip
python -m pip install -r requirements.txt
- name: Make
run: |
make html
# - name: Upload Site
# uses: SamKirkland/[email protected]
# env:
# FTP_SERVER: www456.your-server.de
# FTP_USERNAME: eniaka_2
# FTP_PASSWORD: ${{ secrets.MAY_LA_FTP_PWD }}
# LOCAL_DIR: build/html
# METHOD: sftp
# PORT: 22
# ARGS: --delete

0 comments on commit 6263c36

Please sign in to comment.