From b6770f3bbaf248e0556abbba6f2395903e9ce364 Mon Sep 17 00:00:00 2001 From: Jonathan Branan Date: Sat, 2 Nov 2024 21:28:57 -0500 Subject: [PATCH] a --- .gitea/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 82c0ea9..eba531d 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -13,11 +13,6 @@ jobs: - uses: actions/setup-go@v3 with: go-version: '1.20' - - uses: https://gitea.com/actions/go-hashfiles@v0.0.1 - id: get-hash - with: - patterns: |- - **/yarn.lock - uses: actions/checkout@v4 - name: Set Node.js 22.x uses: actions/setup-node@v4 @@ -26,6 +21,11 @@ jobs: cache-dependency-path: 'yarn.lock' - name: Install Yarn run: npm install -g yarn + - uses: https://gitea.com/actions/go-hashfiles@v0.0.1 + id: get-hash + with: + patterns: |- + **/yarn.lock - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT