diff --git a/.github/workflows/release-start.yml b/.github/workflows/release-start.yml index 13549ae52..a1fee6009 100644 --- a/.github/workflows/release-start.yml +++ b/.github/workflows/release-start.yml @@ -44,8 +44,13 @@ jobs: if: github.event.inputs.channel == 'stable' && 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) - 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 - name: Get version