[WIP][progamming][packaging] Sign PKGBUILD packages #36
Workflow file for this run
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: Build documentation | |
on: | |
push: | |
# Build but do not publish for all development branches that may become pull requests. | |
branches: | |
- '*' | |
- '!main' | |
- '!stable' | |
jobs: | |
build: | |
name: Build documentation | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Change directory | |
run: cd $GITHUB_WORKSPACE | |
- name: Install Sphinx dependencies | |
run: sudo apt-get update && sudo apt-get install -y python3-sphinx python3-sphinx-rtd-theme | |
- name: Verify that the build works | |
run: make html |