Skip to content

Release

Release #67

Workflow file for this run

name: Release
on:
workflow_dispatch:
inputs:
release-type:
description: "Scope of the release."
type: choice
required: true
default: patch
options:
- patch
- minor
- major
jobs:
release:
name: Release
uses: bakdata/ci-templates/.github/workflows/[email protected]
with:
release-type: "${{ github.event.inputs.release-type }}"
secrets:
github-username: "${{ secrets.GH_USERNAME }}"
github-email: "${{ secrets.GH_EMAIL }}"
github-token: "${{ secrets.GH_TOKEN }}"