From 351b6051f66a092a15b32e7ad9ed96b819ac9963 Mon Sep 17 00:00:00 2001 From: Andrey Sitnik Date: Fri, 29 Mar 2024 00:07:24 +0100 Subject: [PATCH] Fix artifact usage in code test CI workflow --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1a659bc7..f3bbd1c9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,7 @@ jobs: run: pnpm test env: FORCE_COLOR: 1 - - name: Upload artifacts + - name: Upload web assets if: github.ref == 'refs/heads/main' uses: actions/upload-artifact@v4 with: @@ -50,10 +50,11 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 - - name: Download built assets artifacts + - name: Download web assets from test step uses: actions/download-artifact@v4 with: name: web-client-assets-${{ github.sha }} + path: web/dist/ - name: Auth Google Cloud uses: google-github-actions/auth@v2 with: