2022-12-05 15:49:22 +01:00
|
|
|
name: Run npm version and push tags
|
2022-12-05 15:46:02 +01:00
|
|
|
|
2022-12-05 16:16:18 +01:00
|
|
|
concurrency:
|
2022-12-05 16:04:49 +01:00
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
2022-12-05 16:01:40 +01:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-10-04 11:52:46 +02:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
2022-12-05 15:46:02 +01:00
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
2022-12-05 16:16:18 +01:00
|
|
|
version:
|
2023-12-20 08:15:22 +01:00
|
|
|
description: What version number would you like to use? The version number should be **without** a leading `v`, e.g. `5.7.1` or `6.2.4`.
|
2022-12-05 15:46:02 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2022-12-05 16:16:18 +01:00
|
|
|
|
2022-12-05 15:59:13 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-04-18 10:35:32 +02:00
|
|
|
node-version: [18.x]
|
2022-12-05 15:46:02 +01:00
|
|
|
|
|
|
|
steps:
|
2023-10-04 11:52:46 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-12-09 09:30:16 +01:00
|
|
|
with:
|
2023-10-04 11:52:46 +02:00
|
|
|
fetch-depth: 0
|
2023-10-06 16:39:34 +02:00
|
|
|
token: ${{ secrets.GH_PUSH_TOKEN }}
|
2023-10-04 11:52:46 +02:00
|
|
|
- name: Set up git-cliff
|
|
|
|
uses: kenji-miyake/setup-git-cliff@v1
|
2022-12-05 16:32:10 +01:00
|
|
|
- name: setup git config
|
|
|
|
run: |
|
|
|
|
git config user.name "GitHub Actions Bot"
|
|
|
|
git config user.email "<>"
|
2022-12-05 15:59:13 +01:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2024-01-17 08:56:41 +01:00
|
|
|
uses: actions/setup-node@v4
|
2022-12-05 15:59:13 +01:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2023-10-06 16:39:34 +02:00
|
|
|
cache: 'yarn'
|
2023-10-04 11:52:46 +02:00
|
|
|
- if: ${{ endsWith(github.event.inputs.version, '0') }}
|
|
|
|
run: |
|
|
|
|
PREV_COMMIT=$(git rev-list --tags --max-count=1)
|
|
|
|
echo PREV=$(git describe --tags ${PREV_COMMIT}) >> $GITHUB_ENV
|
|
|
|
- if: ${{ !endsWith(github.event.inputs.version, '0') }}
|
|
|
|
run: echo PREV=$(git describe --abbrev=0) >> $GITHUB_ENV
|
|
|
|
- name: Generate changelog if not pre-release
|
2023-10-06 16:39:34 +02:00
|
|
|
continue-on-error: true
|
2023-10-04 11:52:46 +02:00
|
|
|
if: ${{ !contains(github.event.inputs.version, '-') }}
|
|
|
|
env:
|
|
|
|
PREV: ${{ env.PREV }}
|
|
|
|
run: |
|
|
|
|
git-cliff ${PREV}..HEAD --tag v${{ github.event.inputs.version }} --prepend CHANGELOG.md
|
|
|
|
git commit -am "docs: Update CHANGELOG.md"
|
2022-12-05 15:59:13 +01:00
|
|
|
- run: yarn install --frozen-lockfile --ignore-scripts
|
2022-12-05 15:46:02 +01:00
|
|
|
- name: npm version
|
|
|
|
run: |
|
2022-12-09 09:30:16 +01:00
|
|
|
npm version ${{ github.event.inputs.version }} --ignore-scripts
|
2022-12-15 09:25:44 +01:00
|
|
|
git push origin ${{ github.ref_name }}
|
2022-12-06 09:46:41 +01:00
|
|
|
git push --tags
|
2022-12-05 16:16:18 +01:00
|
|
|
env:
|
|
|
|
CI: true
|