From 3b3d5b6fa63e629d3c8370ba6576025eb1db146a 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:56:47 +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 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/build-test.yaml b/.gitea/workflows/build-test.yaml index d67fb95..b6c3129 100644 --- a/.gitea/workflows/build-test.yaml +++ b/.gitea/workflows/build-test.yaml @@ -3,7 +3,7 @@ run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 on: [ push ] env: BARE_REPO_DIR: https://git.alina-dace.info/Dace/Mirai-bot.git - CLONED_REPO_DIR: ./Dace/Mirai-bot + CLONED_REPO_DIR: ./ jobs: Explore-Gitea-Actions: runs-on: ubuntu-latest @@ -11,7 +11,6 @@ jobs: - run: | rm -rf $CLONED_REPO_DIR git clone $BARE_REPO_DIR $CLONED_REPO_DIR - - run: cd Dace/Mirai-bot - run: pwd - run: ls -sl - run: chmod +x ./mvnw