Skip to content

Commit c8d999d

Browse files
committed
Revert "release automation"
This reverts commit 79b5b57.
1 parent 79b5b57 commit c8d999d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/update-versions-next-dev-iteration.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ jobs:
3737
echo "Next stable version: ${{ env.NEXT_STABLE_VERSION }}"
3838
echo "Next beta version: ${{ env.NEXT_BETA_VERSION }}"
3939
40+
- name: Create and switch to new branch
41+
run: |
42+
BRANCH_NAME=update-versions-${{ env.NEXT_STABLE_VERSION }}
43+
echo "branchName=$BRANCH_NAME" >> $GITHUB_ENV
44+
git checkout -b "$BRANCH_NAME"
45+
4046
- name: Extract current stable version property
4147
id: extract-current-stable
4248
run: |
@@ -84,4 +90,4 @@ jobs:
8490
8591
git add .
8692
git commit -m "Update versions to ${{ env.NEXT_STABLE_VERSION }} and ${{ env.NEXT_BETA_VERSION }}"
87-
git push origin main
93+
git push origin "$branchName"

0 commit comments

Comments
 (0)