Skip to content

Commit

Permalink
Create buildGithubPage.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DixxonD authored Dec 4, 2024
1 parent dc155e6 commit d3bd2c7
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/buildGithubPage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: "Publish documentation"
on:
push:
branches:
- "features/dka/docs"

jobs:
publish-documentation:
permissions:
id-token: "write"
pages: "write"

runs-on: "ubuntu-latest"

steps:
- id: "checkout"
name: "Check out Git repository"
uses: "actions/checkout@v3"

- id: "upload-documentation"
name: "Upload Pages artifact"
uses: "actions/upload-pages-artifact@v2"
with:
path: "docs/"

- id: "deployment"
name: "Deploy documentation to GitHub Pages"
uses: "actions/deploy-pages@v2"

0 comments on commit d3bd2c7

Please sign in to comment.