Skip to content

Commit

Permalink
chore: add npm release action (#49)
Browse files Browse the repository at this point in the history
* chore: rename current CI action

* chore: add release action
  • Loading branch information
gmaclennan authored Jun 27, 2023
1 parent d22e130 commit 09d8847
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
File renamed without changes.
49 changes: 49 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
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]

jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
steps:
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install buf cli
uses: bufbuild/buf-setup-action@v1.9.0
- run: buf --version
- uses: nearform-actions/optic-release-automation-action@v4
with:
commit-message: "Release {version}"
sync-semver-tags: true
access: "public"
semver: ${{ github.event.inputs.semver }}
npm-tag: ${{ startsWith('pre', github.event.inputs.semver) && 'next' || 'latest' }}
# optional: set this secret in your repo config for publishing to NPM
# npm-token: ${{ secrets.NPM_TOKEN }}
build-command: |
npm install
npm run build

0 comments on commit 09d8847

Please sign in to comment.