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

19 lines
335 B
YAML
Raw Normal View History

2022-12-05 15:49:22 +01:00
name: Run npm version and push tags
on:
workflow_dispatch:
inputs:
2022-12-05 15:49:22 +01:00
version:
description: What version would you like to use?
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: npm version
run: |
2022-12-05 15:51:20 +01:00
npm version ${{ github.event.inputs.version }}