1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: add release script

This commit is contained in:
Ivar Conradi Østhus 2022-04-05 21:09:03 +02:00
parent f64d2cb768
commit e00d5532ad
No known key found for this signature in database
GPG Key ID: 31AC596886B0BD09

31
.github/workflows/release.yaml vendored Normal file
View File

@ -0,0 +1,31 @@
name: 'Release unleash-server'
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v3
- name: Publish to npm
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- run: |
yarn install --frozen-lockfile
yarn lint
yarn run test
- run: |
TAG=$(echo $GITHUB_REF_NAME | grep -oP '^v\d+\.\d+\.\d+-?\K(\w+)?')
npm publish --tag ${TAG:-latest}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}