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:
parent
e059b755c9
commit
31dbf098a2
18
.github/workflows/publish-new-version.yaml
vendored
Normal file
18
.github/workflows/publish-new-version.yaml
vendored
Normal 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)
|
Loading…
Reference in New Issue
Block a user