Skip to content

Merge pull request #95 from PyLadiesBerlin/add-more-resources #49

Merge pull request #95 from PyLadiesBerlin/add-more-resources

Merge pull request #95 from PyLadiesBerlin/add-more-resources #49

# This is a basic workflow to help you get started with Actions
name: Deploy github pages
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: main
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install and Build
run: |
pip install -r requirements.txt && pelican content -s publishconf.py && cp CNAME ./output
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_dir: ./output