mirror of
https://github.com/catppuccin/gitea.git
synced 2026-03-11 14:44:23 +00:00
ci: Fix release flow
This commit is contained in:
parent
8457e7bddb
commit
b9c8ac26e3
1 changed files with 12 additions and 0 deletions
12
.github/workflows/release-deploy.yml
vendored
12
.github/workflows/release-deploy.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue