Skip to content

Commit

Permalink
Fix publish
Browse files Browse the repository at this point in the history
  • Loading branch information
Callum027 committed Dec 9, 2023
1 parent f8f76f5 commit b0b5f66
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ on:

jobs:
build:
name: Build docs
name: Build
uses: ./.github/workflows/build.yml
publish:
name: Publish docs
name: Publish
uses: ./.github/workflows/publish.yml
needs: build
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ jobs:
name: GitHub Pages
runs-on: ubuntu-22.04
steps:
- name: Download Buildarr Docs from build artifacts
- name: Checkout with submodules
uses: actions/checkout@v3
with:
submodules: true
- name: Download docs from build artifacts
uses: actions/download-artifact@v3
with:
name: buildarr-docs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ on:

jobs:
pre-commit:
name: Run pre-commit hooks
name: Pre-commit
uses: ./.github/workflows/pre-commit.yml
build:
name: Build docs
name: Build
uses: ./.github/workflows/build.yml
needs: pre-commit

0 comments on commit b0b5f66

Please sign in to comment.