1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/.github/workflows/publish-new-version.yaml

42 lines
1.0 KiB
YAML
Raw Normal View History

2022-12-05 15:49:22 +01:00
name: Run npm version and push tags
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
on:
workflow_dispatch:
inputs:
2022-12-05 16:16:18 +01:00
version:
2022-12-05 15:49:22 +01:00
description: What version would you like to use?
jobs:
build:
runs-on: ubuntu-latest
2022-12-05 16:16:18 +01:00
2022-12-05 15:59:13 +01:00
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
with:
2022-12-06 08:29:34 +01:00
token: ${{ secrets.GH_PUSH_TOKEN }}
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 }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --frozen-lockfile --ignore-scripts
- name: npm version
run: |
npm version ${{ github.event.inputs.version }} --ignore-scripts
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