mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
fix release-start (#6557)
This commit is contained in:
parent
6ef9a46814
commit
9a6c3e1d29
7
.github/workflows/release-start.yml
vendored
7
.github/workflows/release-start.yml
vendored
@ -44,8 +44,13 @@ jobs:
|
|||||||
if: github.event.inputs.channel == 'stable' && github.event.inputs.version
|
if: github.event.inputs.channel == 'stable' && github.event.inputs.version
|
||||||
run: npm --workspaces version "${{ github.event.inputs.version }}"
|
run: npm --workspaces version "${{ github.event.inputs.version }}"
|
||||||
|
|
||||||
|
# required for 8.0.0 beta
|
||||||
|
- name: App version (initial alpha/beta where we specify a new general version)
|
||||||
|
if: github.event.inputs.channel != 'stable' && github.event.inputs.version
|
||||||
|
run: npm --workspaces version "${{ github.event.inputs.version }}-${{ github.event.inputs.channel }}.0"
|
||||||
|
|
||||||
- name: App version (alpha/beta)
|
- name: App version (alpha/beta)
|
||||||
if: github.event.inputs.channel != 'stable'
|
if: github.event.inputs.channel != 'stable' && !github.event.inputs.version
|
||||||
run: npm --workspaces version --preid "${{ github.event.inputs.channel }}" prerelease
|
run: npm --workspaces version --preid "${{ github.event.inputs.channel }}" prerelease
|
||||||
|
|
||||||
- name: Get version
|
- name: Get version
|
||||||
|
Loading…
Reference in New Issue
Block a user