Skip to content

Commit

Permalink
Add create-release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy4495 committed Sep 17, 2023
1 parent 212bd3e commit e5175a6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Uses action: https://github.com/ncipollo/release-action

name: Create Release

on:
workflow_dispatch:
inputs:
tag:
description: Release tag name
required: true
type: string

jobs:
create-release:
permissions:
contents: write
name: call-create-release-workflow
uses: Andy4495/.github/.github/workflows/create-release.yml@main
with:
tag: ${{ inputs.tag }}
draft: true
secrets: inherit

0 comments on commit e5175a6

Please sign in to comment.