Skip to content

Commit

Permalink
Added draft release action
Browse files Browse the repository at this point in the history
  • Loading branch information
cjmalloy committed Dec 15, 2023
1 parent 9efacc9 commit 8ac4f4e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release

on:
push:
tags: [ 'v*.*.*' ]

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3

- name: Create Draft Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref_name }}
draft: true
prerelease: false

0 comments on commit 8ac4f4e

Please sign in to comment.