diff --git a/.github/workflows/gen-docs.yml b/.github/workflows/gen-docs.yml new file mode 100644 index 00000000..c4ecbdab --- /dev/null +++ b/.github/workflows/gen-docs.yml @@ -0,0 +1,44 @@ +name: gen-docs + +on: + push: + branches: ["eliemichel/docs"] + workflow_dispatch: + +# Allow only one concurrent deployment +concurrency: + group: "pages" + cancel-in-progress: true + +jobs: + # Generate and build docs + gen-docs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version: '>=1.21.0' + - run: | + cd "${{ github.workspace }}" + pip install -r doc/requirements.txt + make docs + + # Deployment job + deploy: + needs: gen-docs + + # Grant GITHUB_TOKEN the permissions required to make a Pages deployment + permissions: + pages: write # to deploy to Pages + id-token: write # to verify the deployment originates from an appropriate source + + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + + runs-on: ubuntu-latest + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4