feat!: new ReaderWatch class for handling deleted or replaced files #16
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: | |
# - auto | |
- patch | |
- minor | |
- major | |
- prerelease | |
# - prepatch | |
# - preminor | |
# - premajor | |
pull_request: | |
types: [closed] | |
branches: [main] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
issues: write | |
pull-requests: write | |
steps: | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: actions/checkout@v4 | |
- uses: nearform-actions/optic-release-automation-action@v4 | |
with: | |
commit-message: 'Release {version}' | |
sync-semver-tags: true | |
access: 'public' | |
semver: ${{ github.event.inputs.semver }} | |
notify-linked-issues: false | |
# optional: set this secret in your repo config for publishing to NPM | |
npm-token: ${{ secrets.NPM_TOKEN }} | |
build-command: | | |
npm ci |