Skip to content

Commit

Permalink
fix: create draft release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
davenewza committed Oct 25, 2023
1 parent c22a534 commit 7bb9a20
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/NEW_draft_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: New Draft Release

on:
push:
tags:
- "v*"

jobs:
draft-release:
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
fetch-depth: 0
- name: Create Draft Release
uses: elgohr/Github-Release-Action@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
title: Keel runtime ${{ github.ref }}
2 changes: 1 addition & 1 deletion .github/workflows/NEW_publish_cli.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release CLI
name: Publish CLI

on:
workflow_dispatch:
Expand Down

0 comments on commit 7bb9a20

Please sign in to comment.