Skip to content

Release new package version #5

Release new package version

Release new package version #5

Workflow file for this run

name: Release new package version
on:
workflow_dispatch:
inputs:
version-bump:
type: choice
description: 'How to bump a version?'
required: true
default: 'minor'
options:
- major
- minor
- patch
- keep
# push:
# branches: [main]
# paths:
# - '*.scala'
jobs:
ReleasePackage:
uses: ./.github/workflows/buildAndPublishPackage.yaml
secrets: inherit
with:
tag-prefix: 'lambda-utils'
version-bump: ${{ inputs.version-bump || 'patch' }}