Ensure deploy docs workflow callable (#1768)

Checkout current repository in order to call the reusable workflow.

Remove the now duplicated checkout from the called workflow.
This commit is contained in:
Darragh Bailey
2023-08-29 21:49:00 +01:00
committed by GitHub
parent 574de06f4f
commit 2b5ba02227
3 changed files with 6 additions and 3 deletions

View File

@@ -17,9 +17,6 @@ jobs:
concurrency: publish-gh-pages
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Build Docs 🔧
uses: ./.github/workflows/build-docs
with:

View File

@@ -11,6 +11,9 @@ jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Deploy docs
uses: ./.github/workflows/deploy-docs.yml
with:

View File

@@ -14,5 +14,8 @@ jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Deploy docs
uses: ./.github/workflows/deploy-docs.yml