1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

github action to publish new npm version (#2599)

This commit is contained in:
Mateusz Kwasniewski 2022-12-05 15:46:02 +01:00 committed by GitHub
parent e059b755c9
commit 31dbf098a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,18 @@
name: 'Run npm version and push tags'
on:
workflow_dispatch:
inputs:
- name: 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 $(inputs.version)