2 Commits

Author SHA1 Message Date
nullishamy
04d676d139 ci: Use dist dir for artifact download 2024-06-22 19:19:48 +01:00
nullishamy
b9c8ac26e3 ci: Fix release flow 2024-06-22 19:19:46 +01:00

View File

@@ -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,13 @@ 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
path: "dist/"
- name: Create tarball
if: ${{ steps.release.outputs.release_created }}