Skip to content

Commit

Permalink
Update sync script (debezium#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
kgalieva committed Jun 23, 2023
1 parent 15e86ef commit 8b7531c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ WORKDIR /app/src
COPY . /app/src/

ARG BUILD_CONNECTOR_MYSQL
ENV DEBEZIUM_VERSION "1.8.0-SNAPSHOT"
ENV DEBEZIUM_VERSION "1.9.0-SNAPSHOT"
RUN --mount=type=secret,id=maven_read,dst=/root/.m2/settings.xml \
--mount=type=cache,target=/root/.m2/repository \
$BUILD_CONNECTOR_MYSQL
Expand Down
4 changes: 2 additions & 2 deletions script/sync_upstream
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ is_git_clean() {

sync_upstream() {
git checkout pristine-master
git pull upstream master
git pull upstream main
git push origin pristine-master

git checkout master
git pull origin master
git rebase upstream/master
git rebase upstream/main
git push --force-with-lease origin master
}

Expand Down

0 comments on commit 8b7531c

Please sign in to comment.