Skip to content

Split CD workflow and create separate artifact build workflow #2

Split CD workflow and create separate artifact build workflow

Split CD workflow and create separate artifact build workflow #2

Workflow file for this run

name: Create Draft Release
on:
push:
tags: ["*"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
permissions:
contents: write
actions: write
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
jobs:
# Create draft release when tag is pushed
#
# On: Tag is pushed
# Do: 1. Create draft release
create-draft:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create Draft Release
uses: softprops/action-gh-release@v2
with:
draft: true
generate_release_notes: true