From 7ae6e349da1eb5172fe40f3878a4c4b3f10ed6a8 Mon Sep 17 00:00:00 2001 From: Dave Date: Mon, 15 Sep 2025 10:53:01 +0200 Subject: [PATCH] fixed volta issue --- .gitea/workflows/deploy.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index af348ae..57b2f29 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -1,4 +1,4 @@ -name: Build and Deploy DAVE | DMG +name: Build and Deploy Dave | DMG on: push: @@ -12,14 +12,15 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Setup Node.js and cache + - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: '18' - cache: 'pnpm' - name: Install pnpm - run: npm install -g pnpm + uses: pnpm/action-setup@v4 + with: + version: 8 - name: Cache pnpm store uses: actions/cache@v4