Skip to content

Include commit messages in main repo builds #17

Include commit messages in main repo builds

Include commit messages in main repo builds #17

Workflow file for this run

name: Deploy MkDocs to website repo
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Get the commit message
id: get_commit_message
run: echo "COMMIT_MESSAGE=$(git log -1 --pretty=%B)" >> $GITHUB_ENV
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install MkDocs
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material mkdocs-git-revision-date-localized-plugin
- name: Build the MkDocs site
run: mkdocs build
- name: Checkout the target repo
uses: actions/checkout@v2
with:
repository: The-Church-of-Sigma/Website
path: website-repo
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Create target directory if it doesn't exist
run: mkdir -p website-repo/sigmapedia
- name: Copy the built site
run: |
rm -rf website-repo/sigmapedia/*
cp -r site/* website-repo/sigmapedia/
- name: Commit and push changes
run: |
cd website-repo
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add .
git commit -m "Sigmapedia: ${{ env.COMMIT_MESSAGE }}"
git push
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}