Skip to content

release

release #238

Workflow file for this run

name: release
on:
workflow_dispatch:
inputs:
semver:
description: 'The semver to use'
required: true
default: 'patch'
type: choice
options:
- auto
- patch
- minor
- major
baseTag:
description: 'base release tag'
pull_request:
types: [closed]
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
steps:
- uses: nearform-actions/optic-release-automation-action@main
with:
semver: ${{ github.event.inputs.semver }}
base-tag: ${{ github.event.inputs.baseTag }}
sync-semver-tags: 'true'
build-command: npm ci