Skip to content

Commit

Permalink
Getting gh-action github-pages.yml working
Browse files Browse the repository at this point in the history
  • Loading branch information
sbglasius committed Dec 29, 2023
1 parent b8cd8b1 commit bce92b3
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,7 @@ concurrency:
cancel-in-progress: false

jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -43,6 +40,13 @@ jobs:
- uses: actions/upload-pages-artifact@v3
with:
path: 'docs/build/docs'
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/deploy-pages@v4
id: deployment

0 comments on commit bce92b3

Please sign in to comment.