From cefdbe94725cb9602cd1562f7aa844c453b42926 Mon Sep 17 00:00:00 2001 From: stotic-dev Date: Fri, 20 Mar 2026 10:25:36 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20CD=E3=83=AF=E3=83=BC=E3=82=AF?= =?UTF-8?q?=E3=83=95=E3=83=AD=E3=83=BC=E3=81=AESPM=E3=82=AD=E3=83=A3?= =?UTF-8?q?=E3=83=83=E3=82=B7=E3=83=A5=E3=82=AD=E3=83=BC=E3=81=AE=E3=83=91?= =?UTF-8?q?=E3=82=B9=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit hashFiles()のパスに空白が混入しており、ファイルが見つからず SPMキャッシュが常にミスしていた。また、パターンが.xcodeproj ベースで誤っており、ワークスペースのPackage.resolvedを 参照できていなかった。 Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/cdBeta.yml | 2 +- .github/workflows/cdRelease.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cdBeta.yml b/.github/workflows/cdBeta.yml index 04c50d0..d50e31a 100644 --- a/.github/workflows/cdBeta.yml +++ b/.github/workflows/cdBeta.yml @@ -51,7 +51,7 @@ jobs: uses: actions/cache@v4 with: path: SourcePackages - key: ${{ runner.os }}-spm-${{ hashFiles('*.xcodeproj/project.xcworkspace/ xcshareddata/swiftpm/Package.resolved') }} + key: ${{ runner.os }}-spm-${{ hashFiles('TimerWatcherWorkspace.xcworkspace/xcshareddata/swiftpm/Package.resolved') }} restore-keys: ${{ runner.os }}-spm- # GoogleService-Info.plistの復元 diff --git a/.github/workflows/cdRelease.yml b/.github/workflows/cdRelease.yml index 90c3f6a..1232a6c 100644 --- a/.github/workflows/cdRelease.yml +++ b/.github/workflows/cdRelease.yml @@ -50,7 +50,7 @@ jobs: uses: actions/cache@v4 with: path: SourcePackages - key: ${{ runner.os }}-spm-${{ hashFiles('*.xcodeproj/project.xcworkspace/ xcshareddata/swiftpm/Package.resolved') }} + key: ${{ runner.os }}-spm-${{ hashFiles('TimerWatcherWorkspace.xcworkspace/xcshareddata/swiftpm/Package.resolved') }} restore-keys: ${{ runner.os }}-spm- # GoogleService-Info.plistの復元 From 805e26f3e4dc6a4600a0e487d17bb647d45b6c2b Mon Sep 17 00:00:00 2001 From: stotic-dev Date: Fri, 20 Mar 2026 10:27:00 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20CI=E3=83=AF=E3=83=BC=E3=82=AF?= =?UTF-8?q?=E3=83=95=E3=83=AD=E3=83=BC=E3=81=AESPM=E3=82=AD=E3=83=A3?= =?UTF-8?q?=E3=83=83=E3=82=B7=E3=83=A5=E3=82=AD=E3=83=BC=E3=81=AE=E3=83=91?= =?UTF-8?q?=E3=82=B9=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7df48e..5b79e72 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: uses: actions/cache@v4 with: path: SourcePackages - key: ${{ runner.os }}-spm-${{ hashFiles('*.xcodeproj/project.xcworkspace/ xcshareddata/swiftpm/Package.resolved') }} + key: ${{ runner.os }}-spm-${{ hashFiles('TimerWatcherWorkspace.xcworkspace/xcshareddata/swiftpm/Package.resolved') }} restore-keys: ${{ runner.os }}-spm- # GoogleService-Info.plistの復元