Skip to content

Commit

Permalink
chore: add release CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gmaclennan committed Sep 26, 2024
1 parent 010f68b commit fc4fba6
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: 'patch'
type: choice
options:
# - auto
- patch
- minor
- major
- prerelease
# - prepatch
# - preminor
# - premajor
pull_request:
types: [closed]
branches: [main]

jobs:
release:
if: github.event.pull_request.merged == true
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

0 comments on commit fc4fba6

Please sign in to comment.