CI - split git commands

main
Dragan Filipovic 2021-04-17 00:28:36 +02:00
parent 130901534a
commit 386c8766a0
1 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
name: Manage version
name: Release
on:
workflow_dispatch:
inputs:
@ -21,10 +21,10 @@ jobs:
npm install
npm run lint
npm run build
- name: Setup version and git tag
- name: Setup version
if: ${{ github.event.inputs.tag != '' }}
run: |
npm version ${{ github.event.inputs.tag }}
git tag -a v${{ github.event.inputs.tag }} -m "v${{ github.event.inputs.tag }}"
- name: Push changes
run: git push
git push
- name: Add tag
run: git tag -a v${{ github.event.inputs.tag }} -m "v${{ github.event.inputs.tag }}"