Skip to content

create-release

create-release #59

# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen".
name: create-release
on:
workflow_dispatch:
inputs:
bump_level:
description: Version level to bump
default: patch
required: false
type: choice
options:
- none
- patch
- minor
- major
jobs:
create:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: ottofeller/github-actions/create-release@main
with:
initial-version: 1.0.0
bump-level: ${{ github.event.inputs.bump_level }}
release-branches: main
update-root-package_json: true
github-token: ${{ secrets.GITHUB_TOKEN }}