From 05e3efd29801d20ff499b1092b5ea5821fea1b1d Mon Sep 17 00:00:00 2001 From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Tue, 6 Aug 2024 17:34:08 +0200 Subject: [PATCH] redirects -> _redirects --- .github/workflows/ci.yml | 4 ++-- site/{redirects => _redirects} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename site/{redirects => _redirects} (100%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0c2aac..8ccd0bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,10 +101,10 @@ jobs: - uses: actions/checkout@v3 - run: sudo apt-get update && sudo apt-get install -y jq - run: | - ./helpers/json2redirects.sh book/link2alias.json > site/redirects + ./helpers/json2redirects.sh book/link2alias.json > site/_redirects # Verify nothing has changed, meaning that the redirect file is up-to-date - run: | - git diff --exit-code site/redirects + git diff --exit-code site/_redirects formatter: runs-on: ubuntu-latest diff --git a/site/redirects b/site/_redirects similarity index 100% rename from site/redirects rename to site/_redirects -- 2.45.2