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
2022-12-05 15:51:20 +01:00

19 lines
335 B
YAML

name: Run npm version and push tags
on:
workflow_dispatch:
inputs:
version:
description: What version would you like to use?
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: npm version
run: |
npm version ${{ github.event.inputs.version }}