Skip to content

Commit

Permalink
chore: add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
achou11 committed Dec 16, 2024
1 parent 631ceb8 commit 3fe9a43
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: release

on:
workflow_dispatch:
inputs:
semver:
description: 'The semver to use'
required: true
default: 'auto'
type: choice
options:
- auto
- patch
- minor
- major
- prerelease
pull_request:
types: [closed]
branches: [main]

jobs:
release:
if: ${{github.event_name != 'pull_request' || github.event.pull_request.merged}}
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
steps:
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- uses: nearform-actions/optic-release-automation-action@v4
with:
commit-message: 'Release {version}'
sync-semver-tags: false
access: 'public'
# This prefix is added before the prerelease number, e.g. `v3.0.0-alpha.0`
# prerelease-prefix: 'alpha'
semver: ${{ github.event.inputs.semver }}
# Prereleases are published under the `alpha` npm dist-tag
# npm-tag: ${{ startsWith(github.event.inputs.semver, 'pre') && 'alpha' || 'latest' }}
# Don't notify linked issues
notify-linked-issues: false
npm-token: ${{ secrets.NPM_TOKEN }}
build-command: |
npm ci

0 comments on commit 3fe9a43

Please sign in to comment.