From dc3732cef96e8ef1d6e5fa9e5eb15e630547b6bb Mon Sep 17 00:00:00 2001 From: Zakary Timson Date: Fri, 28 Jul 2023 18:53:25 +0000 Subject: [PATCH] Update .github/workflows/Continues Integration.yaml --- .github/workflows/Continues Integration.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Continues Integration.yaml b/.github/workflows/Continues Integration.yaml index 0585498..04fe902 100644 --- a/.github/workflows/Continues Integration.yaml +++ b/.github/workflows/Continues Integration.yaml @@ -13,9 +13,8 @@ jobs: - name: Restore node_modules uses: actions/cache/restore@v3 with: - path: ./node_modules + path: node_modules key: node_modules - restore-keys: node_modules - name: Install dependencies run: npm install @@ -91,9 +90,8 @@ jobs: - name: Restore build artifacts uses: actions/cache/restore@v3 with: - path: ./dist + path: dist key: dist-prod - restore-keys: dist-prod - name: Build docker image uses: ztimson/actions/docker/build@develop