From ded148a0f5f13348f9841eecd57dad46f098f243 Mon Sep 17 00:00:00 2001 From: Bernd Storath <999999bst@gmail.com> Date: Wed, 5 Mar 2025 13:24:58 +0100 Subject: [PATCH] fix docs action --- .github/workflows/deploy-development.yml | 3 +++ .github/workflows/deploy-nightly.yml | 5 +++++ .github/workflows/deploy.yml | 3 +++ 3 files changed, 11 insertions(+) diff --git a/.github/workflows/deploy-development.yml b/.github/workflows/deploy-development.yml index 1ea24f43..2b479028 100644 --- a/.github/workflows/deploy-development.yml +++ b/.github/workflows/deploy-development.yml @@ -45,11 +45,14 @@ jobs: contents: write needs: docker steps: + - uses: actions/checkout@v4 + - name: Setup Python uses: actions/setup-python@v5 with: python-version: 3.11.9 cache: "pip" + cache-dependency-path: docs/requirements.txt - name: Install Dependencies run: | diff --git a/.github/workflows/deploy-nightly.yml b/.github/workflows/deploy-nightly.yml index 5088649c..6f4d1701 100644 --- a/.github/workflows/deploy-nightly.yml +++ b/.github/workflows/deploy-nightly.yml @@ -49,11 +49,16 @@ jobs: contents: write needs: docker steps: + - uses: actions/checkout@v4 + with: + ref: master + - name: Setup Python uses: actions/setup-python@v5 with: python-version: 3.11.9 cache: "pip" + cache-dependency-path: docs/requirements.txt - name: Install Dependencies run: | diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 25263210..7ccae380 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -64,11 +64,14 @@ jobs: contents: write needs: docker steps: + - uses: actions/checkout@v4 + - name: Setup Python uses: actions/setup-python@v5 with: python-version: 3.11.9 cache: "pip" + cache-dependency-path: docs/requirements.txt - name: Install Dependencies run: |