Skip to content

testing

testing #29

Workflow file for this run

name: 'Build sphinx docs'
# controls when the workflow will run
on:
# triggers on git push
push:
branches: [actions]
# allows running this manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Build Docker image
run: docker build -t nitrokey/sphinx . -f .github/workflows/sphinx/Dockerfile .