From b9c8ac26e34ce7e6303f094b91ee33b0d9afc9dc Mon Sep 17 00:00:00 2001 From: nullishamy Date: Sat, 22 Jun 2024 19:09:19 +0100 Subject: [PATCH] ci: Fix release flow --- .github/workflows/release-deploy.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/release-deploy.yml b/.github/workflows/release-deploy.yml index 5d27c4b..d139b95 100644 --- a/.github/workflows/release-deploy.yml +++ b/.github/workflows/release-deploy.yml @@ -22,6 +22,12 @@ jobs: uses: "actions/upload-pages-artifact@v3" with: path: "dist/" + + - name: Upload produced css + uses: actions/upload-artifact@v4 + with: + name: css + path: "dist/" release: needs: "build" @@ -38,6 +44,12 @@ jobs: uses: "google-github-actions/release-please-action@v3" with: release-type: "simple" + draft: true + + - name: Download a single artifact + uses: actions/download-artifact@v4 + with: + name: css - name: Create tarball if: ${{ steps.release.outputs.release_created }}