From b34a4539fd0a01a886da07b9c8188dfd3633212e Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Wed, 30 Jul 2025 11:25:30 +0200 Subject: [PATCH] fix: remove quotes from job name and cache key in nuxthub.yml for consistency --- .github/workflows/nuxthub.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nuxthub.yml b/.github/workflows/nuxthub.yml index 9e501c1..7efc35e 100644 --- a/.github/workflows/nuxthub.yml +++ b/.github/workflows/nuxthub.yml @@ -3,7 +3,7 @@ on: push jobs: deploy: - name: "Deploy to NuxtHub" + name: Deploy to NuxtHub runs-on: ubuntu-latest environment: name: ${{ github.ref == 'refs/heads/main' && 'production' || 'preview' }} @@ -22,7 +22,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: 22 - cache: 'pnpm' + cache: pnpm - name: Install dependencies run: pnpm install