Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/patch-release-step1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,14 @@ jobs:

- name: 4. Get and Increment Version
id: bump
env:
TARGET_MINOR_INPUT: ${{ inputs.target_minor }}
run: |
# Fetch all remote branches and tags
git fetch --all
git fetch --tags

TARGET_MINOR="${{ inputs.target_minor }}"
TARGET_MINOR="$TARGET_MINOR_INPUT"

if [[ -n "$TARGET_MINOR" ]]; then
# Opt-in: patch a specific (non-latest) minor.
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/patch-release-step2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,14 @@ jobs:

- name: 3. Find Latest Release Branch
id: find_branch
env:
TARGET_MINOR_INPUT: ${{ inputs.target_minor }}
run: |
# Fetch all remote branches and tags
git fetch --all
git fetch --tags

TARGET_MINOR="${{ inputs.target_minor }}"
TARGET_MINOR="$TARGET_MINOR_INPUT"

if [[ -n "$TARGET_MINOR" ]]; then
# Opt-in: patch a specific (non-latest) minor.
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/patch-release-step3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,14 @@ jobs:

- name: 3. Find Latest Release Branch
id: find_branch
env:
TARGET_MINOR_INPUT: ${{ inputs.target_minor }}
run: |
# Fetch all remote branches and tags
git fetch --all
git fetch --tags

TARGET_MINOR="${{ inputs.target_minor }}"
TARGET_MINOR="$TARGET_MINOR_INPUT"

if [[ -n "$TARGET_MINOR" ]]; then
# Opt-in: patch a specific (non-latest) minor.
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/patch-release-step4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,14 @@ jobs:

- name: 3. Find Latest Release Branch
id: find_branch
env:
TARGET_MINOR_INPUT: ${{ inputs.target_minor }}
run: |
# Fetch all remote branches and tags
git fetch --all
git fetch --tags

TARGET_MINOR="${{ inputs.target_minor }}"
TARGET_MINOR="$TARGET_MINOR_INPUT"

if [[ -n "$TARGET_MINOR" ]]; then
# Opt-in: patch a specific (non-latest) minor.
Expand Down
Loading