Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.

Commit e7e572e

Browse files
authored
[Fix] CI on merge (#251)
* [Fix] CI on merge * rename
1 parent 3776ab4 commit e7e572e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/integration.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ jobs:
3030
GIT_COMMIT=$(git rev-parse HEAD | head -c 8)
3131
REMOTE=${{ github.event.pull_request.head.repo.html_url }}
3232
echo "optimism-integration $GIT_COMMIT"
33-
./docker/build.sh -s deployer -b $GITHUB_HEAD_REF -r $REMOTE
33+
if [ -z $REMOTE ]; then
34+
./docker/build.sh -s deployer -b $GITHUB_HEAD_REF
35+
else
36+
./docker/build.sh -s deployer -b $GITHUB_HEAD_REF -r $REMOTE
37+
fi
3438
3539
- name: Test
3640
run: |

0 commit comments

Comments
 (0)