Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: release-start handle re-run step #7215

Merged
merged 1 commit into from Mar 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
26 changes: 20 additions & 6 deletions .github/workflows/release-start.yml
Expand Up @@ -37,6 +37,9 @@
- name: Install packages
run: npm ci

# ############################################################
# SETUP RELEASE_VERSION and RELEASE_BRANCH

- name: App version (stable, patch latest stable)
if: github.event.inputs.channel == 'stable' && !github.event.inputs.version
run: npm --workspaces version patch
Expand All @@ -59,6 +62,8 @@
if: github.event.inputs.channel != 'stable' && !github.event.inputs.version
run: npm --workspaces version --preid "${{ github.event.inputs.channel }}" prerelease

# ############################################################

- name: Get version
shell: bash
run: |
Expand Down Expand Up @@ -87,22 +92,31 @@
with:
username: ${{ (github.event_name == 'workflow_dispatch' && github.actor) || 'insomnia-infra' }}

- name: (Re-run) App version (stable, no version doing patch)
# ############################################################
# re-run the versioning steps to apply to the new branch

- name: (Re-run) App version (stable, patch latest stable)
if: github.event.inputs.channel == 'stable' && !github.event.inputs.version
run: npm --workspaces version patch

- name: (Re-run) App version (stable)
- name: (Re-run) App version (stable, with a specific version)
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: (Re-run) App version (initial alpha/beta where we specify a new general version)
if: github.event.inputs.channel != 'stable' && github.event.inputs.version
# handle new "major" beta releases, e.g. 10.0, 11.0, 12.0 ...
- name: (Re-run) App version (alpha/beta, with new general version)
if: github.event.inputs.channel != 'stable' && github.event.inputs.version && !contains(github.event.inputs.version, "-${{ github.event.inputs.channel }}")
run: npm --workspaces version "${{ github.event.inputs.version }}-${{ github.event.inputs.channel }}.0"

- name: (Re-run) App version (alpha/beta)
# handle botched alpha/beta releases, e.g. for iterations that were merged before running release-publish
- name: (Re-run) App version (alpha/beta, with a specific version)
if: github.event.inputs.channel != 'stable' && github.event.inputs.version && contains(github.event.inputs.version, "-${{ github.event.inputs.channel }}")
run: npm --workspaces version "${{ github.event.inputs.version }}"
Dismissed Show dismissed Hide dismissed

- name: (Re-run) App version (alpha/beta, patch latest)
if: github.event.inputs.channel != 'stable' && !github.event.inputs.version
run: npm --workspaces version --preid "${{ github.event.inputs.channel }}" prerelease
# ############################################################

- name: Git Commit
run: git commit -am "Bump app version to ${{ env.RELEASE_VERSION }}"
Expand Down