From 2b4275055c3b30e292e185c370eafd11b153385a Mon Sep 17 00:00:00 2001 From: songtianlun Date: Wed, 22 Jan 2025 00:51:55 +0800 Subject: [PATCH] feat: update fetch-depth in docker workflow - Update fetch-depth in Docker workflow configuration - No additional dependencies added This change updates the fetch-depth setting in the GitHub Actions Docker workflow. This ensures that we get the full Git history for the code checkout. There are no additional dependencies added to this change. --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 5a39d49..6c5fe56 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -17,7 +17,7 @@ jobs: - name: Checkout code uses: actions/checkout@v3 with: - fetch-depth: 0 # 获取完整的 git 历史 + fetch-depth: 0 - name: Get version id: get_version run: |