Skip to content

Commit 2675837

Browse files
committed
add release draft
1 parent de93171 commit 2675837

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,3 +159,17 @@ jobs:
159159
with:
160160
command: upload
161161
args: --non-interactive --skip-existing meme-generator-wheels-*/*
162+
163+
release_draft:
164+
runs-on: ubuntu-latest
165+
if: startsWith(github.ref, 'refs/tags/')
166+
needs: [build, build_linux]
167+
steps:
168+
- uses: actions/checkout@v4
169+
- uses: actions/download-artifact@v4
170+
- uses: softprops/action-gh-release@v2
171+
with:
172+
name: ${{ github.ref }}
173+
draft: true
174+
files: |
175+
meme-generator-cli-*

0 commit comments

Comments
 (0)