GH-Pages Status #99
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GH-Pages Status | |
on: | |
page_build | |
jobs: | |
see-page-build-payload: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
architecture: x64 | |
- name: check status | |
run: | | |
import os | |
status, errormsg = os.getenv('STATUS'), os.getenv('ERROR') | |
if status != 'built': raise AssertionError(f"There was an error building the page on GitHub pages.\n\nStatus: {status}\n\nError messsage: {errormsg}") | |
shell: python | |
env: | |
STATUS: ${{ github.event.build.status }} | |
ERROR: ${{ github.event.build.error.message }} |