Skip to content

Release

Release #69

Workflow file for this run

name: Release
on:
workflow_dispatch:
inputs:
branch:
description: "Branch"
required: true
default: "main"
tag:
description: "Release Tag"
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Release it!
if: ${{ github.event.inputs.tag != '' }} # don't release if no tag is specified
uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true
draft: true
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.event.inputs.tag }}
commit: ${{ github.event.inputs.branch }}