From 791fee74d44bb17aed8a98aa415443caaf4e1102 Mon Sep 17 00:00:00 2001 From: Grand-cocoa <1075576561@qq.com49111108+grand-cocoa@users.noreply.github.com> Date: Wed, 18 Sep 2024 17:57:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E6=B5=81=E4=BC=98=E5=8C=96?= =?UTF-8?q?=EF=BC=9A=E7=AE=80=E5=8C=96=E4=BB=93=E5=BA=93=E5=85=8B=E9=9A=86?= =?UTF-8?q?=E8=B7=AF=E5=BE=84=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在Gitea Actions工作流中,已更新仓库克隆目录的路径设置,以简化为当前目录下的相对路径。这样做旨在避免潜在的权限问题,并使工作流的配置更加清晰。 --- .gitea/workflows/build-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build-test.yaml b/.gitea/workflows/build-test.yaml index b6c3129..6510e66 100644 --- a/.gitea/workflows/build-test.yaml +++ b/.gitea/workflows/build-test.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - run: | - rm -rf $CLONED_REPO_DIR + rm -rf ./* git clone $BARE_REPO_DIR $CLONED_REPO_DIR - run: pwd - run: ls -sl