From 610ff61e8459ebba69dbcbd805e4f16cceac5c4c Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Sat, 27 Dec 2025 16:48:24 +1100 Subject: [PATCH 1/4] Add fetch-depth: 0 to checkout actions for changelog support --- .github/workflows/ci.yml | 2 ++ .github/workflows/publish.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da036b50..e9674b58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v6 + with: + fetch-depth: 0 - name: Setup Anaconda uses: conda-incubator/setup-miniconda@v3 with: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f0394406..b876bd9d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,6 +10,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v6 + with: + fetch-depth: 0 - name: Setup Anaconda uses: conda-incubator/setup-miniconda@v3 with: From 040c6a0e6f47a2aea61ff334b6937a144e182aae Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Sat, 27 Dec 2025 17:49:27 +1100 Subject: [PATCH 2/4] Add fetch-depth: 0 to cache workflow for changelog support --- .github/workflows/cache.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml index e1a2f23a..cb04eb0b 100644 --- a/.github/workflows/cache.yml +++ b/.github/workflows/cache.yml @@ -10,6 +10,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v6 + with: + fetch-depth: 0 - name: Setup Anaconda uses: conda-incubator/setup-miniconda@v3 with: From 155c103ae1753e8f01f85b0babf51d1772e6eac3 Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Sat, 27 Dec 2025 17:50:08 +1100 Subject: [PATCH 3/4] Temporarily disable build cache to test changelog feature --- .github/workflows/ci.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9674b58..0f8432a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,13 +39,14 @@ jobs: - name: Display Pip Versions shell: bash -l {0} run: pip list - - name: Download "build" folder (cache) - uses: dawidd6/action-download-artifact@v11 - with: - workflow: cache.yml - branch: main - name: build-cache - path: _build + # TEMPORARILY DISABLED FOR TESTING CHANGELOG FEATURE + # - name: Download "build" folder (cache) + # uses: dawidd6/action-download-artifact@v11 + # with: + # workflow: cache.yml + # branch: main + # name: build-cache + # path: _build # Build Assets (Download Notebooks and PDF via LaTeX) - name: Build PDF from LaTeX shell: bash -l {0} From bcc117b7c825447dc02a068931dc267bcbd9ce07 Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Sat, 27 Dec 2025 20:17:29 +1100 Subject: [PATCH 4/4] Revert "Temporarily disable build cache to test changelog feature" This reverts commit 155c103ae1753e8f01f85b0babf51d1772e6eac3. --- .github/workflows/ci.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f8432a7..e9674b58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,14 +39,13 @@ jobs: - name: Display Pip Versions shell: bash -l {0} run: pip list - # TEMPORARILY DISABLED FOR TESTING CHANGELOG FEATURE - # - name: Download "build" folder (cache) - # uses: dawidd6/action-download-artifact@v11 - # with: - # workflow: cache.yml - # branch: main - # name: build-cache - # path: _build + - name: Download "build" folder (cache) + uses: dawidd6/action-download-artifact@v11 + with: + workflow: cache.yml + branch: main + name: build-cache + path: _build # Build Assets (Download Notebooks and PDF via LaTeX) - name: Build PDF from LaTeX shell: bash -l {0}