Skip to content

Commit

Permalink
Various deploy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgensd committed Jan 5, 2024
1 parent 2940ed3 commit 4377e56
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ env:
DEB_PYTHON_INSTALL_LAYOUT: deb_system

jobs:

build-book:
uses: ./.github/workflows/build_docs.yml

Expand All @@ -33,25 +32,25 @@ jobs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Pages
uses: actions/configure-pages@v2
uses: actions/configure-pages@v4

- name: Download docs artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: documentation
path: "./public"

- name: Upload page artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: "./public"

- name: Deploy webpage
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4

0 comments on commit 4377e56

Please sign in to comment.