This commit is contained in:
Lyric
2024-11-18 11:25:55 +09:00
parent f3923bfcd6
commit 72cb3fefb0

View File

@@ -24,10 +24,10 @@ jobs:
- uses: actions/cache@v4
with:
path: "**/node_modules"
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', '**/package.json') }}
- name: Setup node env
uses: actions/setup-node@master
uses: actions/setup-node@v3
with:
node-version: "20"
@@ -37,6 +37,9 @@ jobs:
- name: Build
run: yarn docs:build
- name: Install Wrangler manually (workaround)
run: npm install -g wrangler@3.81.0
- name: Deploy
uses: cloudflare/wrangler-action@v3
with: