diff --git a/.github/workflows/build-ci-test.yaml b/.github/workflows/build-ci-test.yaml index bea0272..ce4e61e 100644 --- a/.github/workflows/build-ci-test.yaml +++ b/.github/workflows/build-ci-test.yaml @@ -45,10 +45,3 @@ jobs: cd frontend pnpm run build - - name: Save build artifacts - if: success() - uses: actions/upload-artifact@v4 - with: - name: build - path: ./frontend/dist - diff --git a/.github/workflows/deploy-gh-pages.yaml b/.github/workflows/deploy-gh-pages.yaml index 36af070..2923560 100644 --- a/.github/workflows/deploy-gh-pages.yaml +++ b/.github/workflows/deploy-gh-pages.yaml @@ -37,13 +37,10 @@ jobs: cd frontend pnpm install - - name: Download Artifacts - id: download-artifact - uses: dawidd6/action-download-artifact@v5 - with: - workflow: build-ci-test.yaml - github_token: ${{secrets.GITHUB_TOKEN}} - path: ./frontend/ + - name: Build the application + run: | + cd frontend + pnpm run build - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4