Skip to content

Commit

Permalink
Add deploy gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
eliemichel committed Mar 2, 2024
1 parent 1e0c63c commit 4db36ee
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/gen-docs.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4db36ee

Please sign in to comment.