From 7bce912a1bd9910b301195486b688a93eceb2a05 Mon Sep 17 00:00:00 2001 From: Parinita Mulak Date: Fri, 26 Jul 2024 12:57:32 -0700 Subject: [PATCH] fix: yaml syntax (#7) --- .github/workflows/production-site-build.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/production-site-build.yml b/.github/workflows/production-site-build.yml index 30faf4b..1d3e75a 100644 --- a/.github/workflows/production-site-build.yml +++ b/.github/workflows/production-site-build.yml @@ -39,14 +39,16 @@ jobs: - name: Checkout code uses: actions/checkout@v3 if: ${{ github.event_name == 'release' }} + + # Corrected indentation here - uses: ./.github/workflows/setup-workspace - - name: Cache built static site - id: cache-nuxt3 - uses: actions/cache@v3 - with: - path: .output/public - key: nuxt3-site-${{ github.sha }} + - name: Cache built static site + id: cache-nuxt3 + uses: actions/cache@v3 + with: + path: .output/public + key: nuxt3-site-${{ github.sha }} - run: pnpm run generate env: