-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a83b113
commit 8f816ac
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
semver: | ||
description: 'The semver to use' | ||
required: true | ||
default: 'auto' | ||
type: choice | ||
options: | ||
- auto | ||
- patch | ||
- minor | ||
- major | ||
pull_request: | ||
types: [closed] | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- name: Use Node.js 20 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
- uses: nearform-actions/optic-release-automation-action@v4 | ||
with: | ||
commit-message: 'chore: release {version}' | ||
sync-semver-tags: true | ||
access: 'public' | ||
# This prefix is added before the prerelease number, e.g. `v3.0.0-next.0` | ||
prerelease-prefix: 'pre' | ||
semver: ${{ github.event.inputs.semver }} | ||
# Prereleases are published under the `next` npm dist-tag | ||
npm-tag: ${{ startsWith(github.event.inputs.semver, 'pre') && 'next' || 'latest' }} | ||
# Don't notify linked issues | ||
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 | ||
npm run build |