Skip to content

Commit

Permalink
Fixup update-branches workflow (#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
neoaggelos authored Jun 10, 2024
1 parent 6772673 commit 0066ba5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/update-branches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 0066ba5

Please sign in to comment.