Skip to content

Commit

Permalink
.github/workflows: add release workflow (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
ronenlu authored Oct 5, 2023
1 parent 89fc79e commit e471de7
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Release to NPM
on:
workflow_dispatch:
inputs:
version:
type: string
description: Version to release, e.g. "v0.1.2"
required: false
push:
tags:
- 'v*.*.*'

jobs:
npm-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.16.0
- name: Set version env
id: set_version
## if version is not provided as input, use the tag name
run: |
echo "tag=${{ github.event.inputs.version }}" >> $GITHUB_OUTPUT
if [ -z "${{ github.event.inputs.version }}" ]; then
echo "tag=${{ github.ref }}" >> $GITHUB_OUTPUT
fi
- name: Update version of npm package
env:
RELEASE_VERSION: ${{ steps.set_version.outputs.tag }}
run: |
npm version $RELEASE_VERSION
- name: publish the npm package
uses: JS-DevTools/npm-publish@v2
with:
token: ${{ secrets.NPM_TOKEN }}

0 comments on commit e471de7

Please sign in to comment.