Skip to content

Commit

Permalink
updated github pages workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AjaniBilby committed Apr 30, 2024
1 parent edc21c9 commit d3fe7c1
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 9 deletions.
44 changes: 38 additions & 6 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,51 @@
name: Deploy Docs

on:
# Runs on pushes targeting the default branch
push:
branches: [ main ]
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
id-token: write
contents: read
pages: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Set up Python 3
uses: actions/setup-python@v3

- name: Install dependencies
run: python -m pip install -r docs/requirements.txt

- name: Build Docs
run: mkdocs gh-deploy --force
- name: Build Site
run: mkdocs build

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: './site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Compiled outputs
site/*
build/*
bin/*

Expand Down

0 comments on commit d3fe7c1

Please sign in to comment.