From 8aa456cee9d3905d424e7f175421ef26f097d7a4 Mon Sep 17 00:00:00 2001 From: Diggory Hardy Date: Sun, 18 Feb 2024 11:33:35 +0000 Subject: [PATCH] Fix gh-pages.yml by deleting .lock file This file is does not meet actions/upload-pages-artifact permission requirements. --- .github/workflows/gh-pages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 9b48b622fa..6c78ff56ba 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -32,6 +32,7 @@ jobs: run: | cargo doc --all --features nightly,serde1,getrandom,small_rng cp utils/redirect.html target/doc/index.html + rm target/doc/.lock - name: Setup Pages uses: actions/configure-pages@v4