From 2b8ac79bffe4d2cb1b1e82af0e1eacd0965673de Mon Sep 17 00:00:00 2001 From: Jan Ehrhardt <59441+jehrhardt@users.noreply.github.com> Date: Sun, 24 Aug 2025 09:41:47 +0200 Subject: [PATCH 1/2] Remove Bluesky verification This is now done via DNS. Signed-off-by: Jan Ehrhardt <59441+jehrhardt@users.noreply.github.com> --- static/.well-known/atproto-did | 1 - 1 file changed, 1 deletion(-) delete mode 100644 static/.well-known/atproto-did diff --git a/static/.well-known/atproto-did b/static/.well-known/atproto-did deleted file mode 100644 index 0f2beb9..0000000 --- a/static/.well-known/atproto-did +++ /dev/null @@ -1 +0,0 @@ -did:plc:c44yiu2fejuzkgmarqx4zh7j From 938233aef1b9505c6fdb9da8428b4a50f097fc0d Mon Sep 17 00:00:00 2001 From: Jan Ehrhardt <59441+jehrhardt@users.noreply.github.com> Date: Sun, 24 Aug 2025 09:44:54 +0200 Subject: [PATCH 2/2] Remove caching from Github Actions The caching does not work as expected. Signed-off-by: Jan Ehrhardt <59441+jehrhardt@users.noreply.github.com> --- .github/workflows/ci.yml | 10 ---------- .github/workflows/gh-pages.yml | 10 ---------- 2 files changed, 20 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a33be29..e56bb01 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,19 +7,9 @@ on: jobs: build: runs-on: ubuntu-latest - env: - UV_CACHE_DIR: /tmp/.uv-cache steps: - name: Checkout uses: actions/checkout@v5 - name: Install uv uses: astral-sh/setup-uv@v6 - - name: Restore uv cache - uses: actions/cache@v4 - with: - path: /tmp/.uv-cache - key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} - restore-keys: | - uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} - uv-${{ runner.os }} - run: uvx --with mkdocs-material mkdocs build diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index e7841c6..e236dd1 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -10,8 +10,6 @@ permissions: jobs: deploy: runs-on: ubuntu-latest - env: - UV_CACHE_DIR: /tmp/.uv-cache steps: - uses: actions/checkout@v5 - name: Configure Git Credentials @@ -20,12 +18,4 @@ jobs: git config user.email 41898282+github-actions[bot]@users.noreply.github.com - name: Install uv uses: astral-sh/setup-uv@v6 - - name: Restore uv cache - uses: actions/cache@v4 - with: - path: /tmp/.uv-cache - key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} - restore-keys: | - uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} - uv-${{ runner.os }} - run: uvx --with mkdocs-material mkdocs gh-deploy --force