Skip to content

Commit

Permalink
github: Draft release on tag
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz committed Sep 21, 2023
1 parent bb61e7b commit c0db554
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tags.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Draft Release on Tags

on:
workflow_run:
workflows: ["Build and Package Fixtures"]
branches:
- 'refs/tags/**'
types:
- completed

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
with:
path: .
- name: Draft Release
uses: softprops/action-gh-release@v1
with:
files: './*'
draft: true
generate_release_notes: true
fail_on_unmatched_files: true

0 comments on commit c0db554

Please sign in to comment.