Merge pull request #292 from michaelb/dev #79
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: Doc | |
env: | |
GITHUB_ACTOR: michaelb | |
GITHUB_REPOSITORY: michaelb/sniprun | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
on: | |
push: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build_sphinx_job: | |
runs-on: ubuntu-latest | |
container: debian:buster-slim | |
steps: | |
- name: Get prerequisites and clone repository | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
set -x | |
apt-get update | |
apt-get install -y git | |
git clone "https://token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" . | |
shell: bash | |
- name: Run build script for Sphinx pages | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: "doc/build.sh" | |
shell: bash |