Skip to content

Bump JamesIves/github-pages-deploy-action from 4.6.4 to 4.6.8 #294

Bump JamesIves/github-pages-deploy-action from 4.6.4 to 4.6.8

Bump JamesIves/github-pages-deploy-action from 4.6.4 to 4.6.8 #294

Workflow file for this run

name: Deploy
on: [push]
permissions:
contents: read
deployments: write
jobs:
deploy:
runs-on: ubuntu-latest
env:
PAGES_DIR: out
steps:
- name: "Check out the repository"
uses: actions/checkout@v4
- name: "Setup Python"
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Python Dependencies Install
run: pip install -r requirements.txt
- name: Build It
run: make
- name: Publish
uses: JamesIves/[email protected]
with:
branch: master
folder: ${{ env.PAGES_DIR }}
repository-name: stigaview/stigaview.github.io
single-commit: true
token: ${{ secrets.STIGAVIEW_PAGES_TOKEN }}
git-config-name: stigaview-publisher
git-config-email: [email protected]
if: ${{ github.repository == 'stigaview/stigaview-static' && github.ref == 'refs/heads/master' }}