Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Update CI dependencies #116

Merged
merged 1 commit into from
Feb 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/buildcheck.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
name: Standard Build Check
name: Documentation Generation

on:
push:
branches:
- master
pull_request:

jobs:
docgen:
name: Documentation Generation
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -27,7 +28,7 @@ jobs:
- name: Deploy docs
# Only deploy docs if this was a push to master
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
uses: JamesIves/github-pages-deploy-action@4.1.4
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs # The folder the action should deploy.
Expand Down