更新 .gitea/workflows/youzi.yml

This commit is contained in:
kongxiangyiren 2024-05-22 08:43:07 +00:00
parent 1dd6594b37
commit 473f1340da

View File

@ -9,11 +9,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: https://gitea.cn/actions/checkout@v3
uses: https://gitea.cn/actions/checkout@v4
- id: tool-cache
uses: https://gitea.com/kongxiangyiren/gitea-tool-cache@v5
with:
# 只有node支持版本号别名
node-version: 18
- uses: https://gitea.cn/actions/setup-node@v4
with:
# gitea-tool-cache导出 node 具体版本
node-version: ${{ steps.tool-cache.outputs.node-version }}
- name: 缓存
uses: https://gitea.cn/actions/cache@v3
uses: https://gitea.cn/actions/cache@v4
id: cache
with:
path: node_modules
@ -21,7 +30,6 @@ jobs:
- name: Install and Build # 下载依赖 打包项目
run: |
corepack enable
yarn install
yarn build
- name: Appleboy