Bump actions/checkout from 3 to 4 #273
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pages CI | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- 'master' | |
jobs: | |
build-and-deploy: | |
name: Build and deploy HTML | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetching sources from repository | |
uses: actions/checkout@v4 | |
- name: Setting up Python interpreter | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Installing dependencies | |
run: | | |
pip install --upgrade pip | |
pip install sphinx | |
- name: Building HTML using Sphinx | |
run: | | |
make html | |
env: | |
CI_ACTION: '1' | |
- name: Deploying built HTML to GitHub pages | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
folder: build/html | |
force: false |