Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,14 @@ runs:
with:
GPG_PASSPHRASE: ${{ inputs.GPG_PASSPHRASE }}

- name: Checkout source branch
- name: Update target and source branches
shell: bash
run: |
git fetch
git checkout ${{ env.TARGET_BRANCH }}
git merge origin/${{ env.TARGET_BRANCH }}
git checkout ${{ env.SOURCE_BRANCH }}
git merge origin/${{ env.SOURCE_BRANCH }}

- name: Set New Version
shell: bash
Expand Down