Skip to content

First GH deployment #80

First GH deployment

First GH deployment #80

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@v3
- name: "Setup Python"
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Python Dependencies Install
run: pip install -r requirements.txt
- name: Run script
run: python -m stigaview_static -o ${{ env.PAGES_DIR }} products
- name: Copy Static Assets
run: cp --verbose -r static/ ${{ env.PAGES_DIR }}/static
- name: Publish
uses: JamesIves/[email protected]
with:
branch: master
folder: ${{ env.PAGES_DIR }}
repository-name: stigaview/stigaview.github.io
single-commit: true
token: ${{ secrets.CONTENT_PAGES_TOKEN }}
git-config-name: stigaview-publisher
git-config-email: [email protected]
if: ${{ github.repository == 'Mab879/stigaview-static' && github.ref == 'refs/heads/gh_pages_deploy' }}