From addc925437ebf47f0aa8d37b423298dcb32fd866 Mon Sep 17 00:00:00 2001 From: Jacob Williams Date: Sat, 22 Feb 2025 09:27:53 -0600 Subject: [PATCH 1/3] set single-commit=true for doc branch see if this clears the commit history. Fixes #583 --- .github/workflows/CI.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index eb2e77c0a..024bd4bf9 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -150,6 +150,7 @@ jobs: with: branch: gh-pages # The branch the action should deploy to. folder: doc # The folder the action should deploy. + single-commit: true clean: true clean-exclude: | prev @@ -166,7 +167,7 @@ jobs: - name: Deploy documentation for tagged release if: matrix.gcc_v == 7 && startsWith(github.ref, 'refs/tags/') - uses: JamesIves/github-pages-deploy-action@v4.6.1 + uses: JamesIves/github-pages-deploy-action@v4.7.3 with: branch: gh-pages # The branch the action should deploy to. folder: doc # The folder the action should deploy. From 8fa91137e469999e7061c6ba18dcfa0e3049ebe2 Mon Sep 17 00:00:00 2001 From: Jacob Williams Date: Sat, 22 Feb 2025 09:43:48 -0600 Subject: [PATCH 2/3] github-pages-deploy-action@v4.7.3 --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 024bd4bf9..11fe7d481 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -146,7 +146,7 @@ jobs: - name: Deploy Documentation for master if: matrix.gcc_v == 7 && github.ref == 'refs/heads/master' - uses: JamesIves/github-pages-deploy-action@v4.6.1 + uses: JamesIves/github-pages-deploy-action@v4.7.3 with: branch: gh-pages # The branch the action should deploy to. folder: doc # The folder the action should deploy. From 12e372e09e0515bfe42872b151c195c9deed90ee Mon Sep 17 00:00:00 2001 From: Jacob Williams Date: Sat, 22 Feb 2025 10:24:34 -0600 Subject: [PATCH 3/3] move single-commit to tagged releases --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 11fe7d481..0a5d1cf12 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -150,7 +150,6 @@ jobs: with: branch: gh-pages # The branch the action should deploy to. folder: doc # The folder the action should deploy. - single-commit: true clean: true clean-exclude: | prev @@ -172,6 +171,7 @@ jobs: branch: gh-pages # The branch the action should deploy to. folder: doc # The folder the action should deploy. target-folder: prev/${{github.ref_name}} # deploy to a version-specific folder + single-commit: true - name: Upload coverage if: matrix.gcc_v == 7