diff --git a/.github/workflows/publish-new-version.yaml b/.github/workflows/publish-new-version.yaml new file mode 100644 index 0000000000..2578e98881 --- /dev/null +++ b/.github/workflows/publish-new-version.yaml @@ -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)