Skip to content

Bump JamesIves/github-pages-deploy-action from 4.6.1 to 4.6.3 #845

Bump JamesIves/github-pages-deploy-action from 4.6.1 to 4.6.3

Bump JamesIves/github-pages-deploy-action from 4.6.1 to 4.6.3 #845

Workflow file for this run

name: Build Github Pages
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
with:
python-version: "3.x"
architecture: "x64"
- run: |
pip install -r requirements.txt
mkdocs build --verbose
- name: Deploy 🚀
if: github.ref == 'refs/heads/master'
uses: JamesIves/github-pages-deploy-action@v4.6.3
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages # The branch the action should deploy to.
folder: site # The folder the action should deploy.