chore(deps): bump actions-toolkit from 1dbfd49
to 4eb4b9d
#230
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
workflow_dispatch: | |
inputs: | |
semver: | |
description: "The semver to use" | |
required: true | |
default: "patch" | |
type: choice | |
options: | |
- patch | |
- minor | |
- major | |
pull_request: | |
types: [closed] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setting action build runtime | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: nearform-actions/optic-release-automation-action@v4 | |
with: | |
github-token: ${{ github.token }} | |
semver: ${{ github.event.inputs.semver }} | |
sync-semver-tags: true | |
build-command: | | |
npm ci | |
npm run build |