2023-02-08 15:32:37 +01:00
|
|
|
name: Continuous beta version publish to npm
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
# To trigger auto version publish name your squashed commits using conventional notation
|
2023-02-08 16:01:24 +01:00
|
|
|
# We support: feat:, fix:, refactor: and chore:
|
2023-02-08 15:32:37 +01:00
|
|
|
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:
|
2023-02-28 15:16:45 +01:00
|
|
|
- uses: actions/checkout@v3
|
2023-02-08 15:32:37 +01:00
|
|
|
with:
|
2023-02-08 15:40:43 +01:00
|
|
|
token: ${{ secrets.GH_PUSH_TOKEN }}
|
2023-02-08 15:32:37 +01:00
|
|
|
- name: setup git config
|
|
|
|
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'
|
|
|
|
# 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
|
2023-02-27 11:00:04 +01:00
|
|
|
- name: update own version
|
2023-02-27 11:32:25 +01:00
|
|
|
run: .github/update_own_version.sh
|
2023-02-27 11:00:04 +01:00
|
|
|
- name: push new version
|
|
|
|
# The new version is pushed back to main and to npm
|
2023-02-08 15:32:37 +01:00
|
|
|
run: |
|
|
|
|
git push origin ${{ github.ref_name }}
|
2023-02-08 17:03:12 +01:00
|
|
|
git push --tags
|
2023-02-08 15:32:37 +01:00
|
|
|
env:
|
|
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|