diff --git a/.github/workflows/on-release.yaml b/.github/workflows/on-release.yaml index b76fb0ca..b797a1c3 100644 --- a/.github/workflows/on-release.yaml +++ b/.github/workflows/on-release.yaml @@ -110,15 +110,12 @@ jobs: - name: Build run: yarn build - env: - # FIXME: prevents failing build when there are warnings from linter, temporary solution until linter is ok - CI: false - name: Upload uses: actions/upload-artifact@v4 with: - name: build - path: build/** + name: spv-wallet-admin + path: dist/** - name: Check if release exists run: | @@ -142,14 +139,12 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: "Prepare working directories" - run: | - mkdir -p dist + - name: Download uses: actions/download-artifact@v4 with: - name: build - path: build + name: spv-wallet-admin + path: dist - name: Resolve docker configuration id: resolve-docker