mirror of https://github.com/vector-im/riot-web
Merge pull request #28130 from element-hq/dbkr/branch_cut_debug_2
Separate out tasks for each merge in the Prepare Release scriptpull/28135/head
commit
3f1a32105a
|
@ -70,11 +70,27 @@ jobs:
|
||||||
fetch-tags: true
|
fetch-tags: true
|
||||||
token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
||||||
|
|
||||||
- name: Merge develop
|
- name: Prepare Git
|
||||||
run: |
|
run: |
|
||||||
git config --global user.email "releases@riot.im"
|
git config --global user.email "releases@riot.im"
|
||||||
git config --global user.name "RiotRobot"
|
git config --global user.name "RiotRobot"
|
||||||
for REPO in $REPOS; do [ -d "$REPO" ] && git -C "$REPO" merge origin/develop; done
|
|
||||||
|
- name: Merge Element Desktop
|
||||||
|
if: inputs.element-desktop
|
||||||
|
run: |
|
||||||
|
git -C "element-desktop" merge origin/develop
|
||||||
|
- name: Merge Element Web
|
||||||
|
if: inputs.element-web
|
||||||
|
run: |
|
||||||
|
git -C "element-web" merge origin/develop
|
||||||
|
- name: Merge React SDK
|
||||||
|
if: inputs.matrix-react-sdk
|
||||||
|
run: |
|
||||||
|
git -C "matrix-react-sdk" merge origin/develop
|
||||||
|
- name: Merge JS SDK
|
||||||
|
if: inputs.matrix-js-sdk
|
||||||
|
run: |
|
||||||
|
git -C "matrix-js-sdk" merge origin/develop
|
||||||
|
|
||||||
- name: Push staging
|
- name: Push staging
|
||||||
run: for REPO in $REPOS; do [ -d "$REPO" ] && git -C "$REPO" push origin staging; done
|
run: for REPO in $REPOS; do [ -d "$REPO" ] && git -C "$REPO" push origin staging; done
|
||||||
|
|
Loading…
Reference in New Issue