We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e7f3de commit 7bb666eCopy full SHA for 7bb666e
1 file changed
.github/workflows/sync-repo-staging.yml
@@ -34,12 +34,14 @@ jobs:
34
35
export GIT_SSH_COMMAND="ssh -i $HOME/.ssh/deploy_key"
36
git remote add sync-repo git@github.com:${{ env.REPO }}.git
37
- git fetch --all
+ git fetch sync-repo deploy
38
39
- name: Fast-forward deployment branch
40
run: |
41
git config push.default upstream
42
- git checkout -b deploy sync-repo/deploy
+ git switch -c deploy sync-repo/deploy
43
+ git status
44
+ git log
45
git merge --ff-only ${{ env.RELEASE_CHANNEL }}
46
47
- name: Push to remote repo
0 commit comments