From 85643065dc2a3526f53a511353db9158ce9c442a Mon Sep 17 00:00:00 2001 From: MATSUNAGA Takuya Date: Wed, 4 Dec 2024 15:30:07 +0900 Subject: [PATCH] feat: Update workflow to use actions/checkout@v4 - Added actions/checkout@v4 step to the publish-to-auto-release workflow to ensure the latest version of the repository is checked out. --- .github/workflows/publish-to-auto-release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish-to-auto-release.yml b/.github/workflows/publish-to-auto-release.yml index cff0bec..541c0b1 100644 --- a/.github/workflows/publish-to-auto-release.yml +++ b/.github/workflows/publish-to-auto-release.yml @@ -57,6 +57,8 @@ jobs: needs: test-tauri runs-on: ubuntu-latest steps: + - uses: actions/checkout@v4 + - name: Extract version from branch name id: extract_version run: |