From 0066ba56fd99767f2a2b0d5b68ba5c7cb7b210b3 Mon Sep 17 00:00:00 2001 From: Angelos Kolaitis Date: Mon, 10 Jun 2024 11:25:50 +0300 Subject: [PATCH] Fixup update-branches workflow (#479) --- .github/workflows/update-branches.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update-branches.yaml b/.github/workflows/update-branches.yaml index 46d33ed73..356bbce5b 100644 --- a/.github/workflows/update-branches.yaml +++ b/.github/workflows/update-branches.yaml @@ -38,14 +38,14 @@ jobs: else exit 1 fi - - name: Sync ${{ github.ref }} to ${{ needs.prepare.outputs.branch }} + - name: Sync ${{ github.ref }} to ${{ steps.determine.outputs.branch }} uses: actions/checkout@v4 with: ssh-key: ${{ secrets.DEPLOY_KEY_TO_UPDATE_STRICT_BRANCH }} - name: Apply ${{ matrix.patch }} patch run: | - git checkout -b ${{ needs.prepare.outputs.branch }} + git checkout -b ${{ steps.determine.outputs.branch }} ./build-scripts/patches/${{ matrix.patch }}/apply - - name: Push to ${{ needs.prepare.outputs.branch }} + - name: Push to ${{ steps.determine.outputs.branch }} run: | - git push origin --force ${{ needs.prepare.outputs.branch }} + git push origin --force ${{ steps.determine.outputs.branch }}