1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

feat: continuous beta version npm release (#3066)

This commit is contained in:
Mateusz Kwasniewski 2023-02-08 15:32:37 +01:00 committed by GitHub
parent 1de8c1b02e
commit b310d98da3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,52 @@
name: Continuous beta version publish to npm
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- main
# To trigger auto version publish name your squashed commits using conventional notation
# We support: feat:, fix:m :refactor and :chore
jobs:
build:
if: ${{ startsWith(github.event.head_commit.message, 'feat:') || startsWith(github.event.head_commit.message, 'fix:') || startsWith(github.event.head_commit.message, 'refactor:') || startsWith(github.event.head_commit.message, 'chore:') }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
with:
# using GITHUB_TOKEN prevents the commits from this action to trigger recursively
token: ${{ secrets.GITHUB_TOKEN }}
- name: setup git config
# GitHub bot will be the author of the auto commits
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<>"
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- name: update package version
# This step always creates beta version
# sample transition after official release: 4.20.0 -> 4.21.0-beta.0
# sample transition after previous beta release: 4.21.0-beta.0 -> 4.21.0-beta.1
#
# The new version is pushed back to master and to npm
run: |
npm version prerelease --preid=beta --ignore-scripts
git push origin ${{ github.ref_name }}
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}