diff --git a/op-batcher/Dockerfile b/op-batcher/Dockerfile index ea50558fbfa6e..b2b1c8e450f2a 100644 --- a/op-batcher/Dockerfile +++ b/op-batcher/Dockerfile @@ -9,6 +9,7 @@ COPY ./op-node /app/op-node COPY ./op-proposer /app/op-proposer COPY ./op-service /app/op-service COPY ./op-batcher /app/op-batcher +COPY ./.git /app/.git WORKDIR /app/op-batcher diff --git a/op-chain-ops/Dockerfile b/op-chain-ops/Dockerfile index 19bf720667105..532ec429830c8 100644 --- a/op-chain-ops/Dockerfile +++ b/op-chain-ops/Dockerfile @@ -6,6 +6,7 @@ COPY ./op-chain-ops/docker.go.work /app/go.work COPY ./op-chain-ops /app/op-chain-ops COPY ./op-bindings /app/op-bindings COPY ./op-node /app/op-node +COPY ./.git /app/.git WORKDIR /app/op-chain-ops diff --git a/op-node/Dockerfile b/op-node/Dockerfile index 56556a4a8c05e..de91ba46ac337 100644 --- a/op-node/Dockerfile +++ b/op-node/Dockerfile @@ -8,6 +8,7 @@ COPY ./op-bindings /app/op-bindings COPY ./op-node /app/op-node COPY ./op-chain-ops /app/op-chain-ops COPY ./op-service /app/op-service +COPY ./.git /app/.git WORKDIR /app/op-node diff --git a/op-proposer/Dockerfile b/op-proposer/Dockerfile index cf5fa92eac7b6..d696c7fcbcac8 100644 --- a/op-proposer/Dockerfile +++ b/op-proposer/Dockerfile @@ -8,6 +8,7 @@ COPY ./op-bindings /app/op-bindings COPY ./op-node /app/op-node COPY ./op-proposer /app/op-proposer COPY ./op-service /app/op-service +COPY ./.git /app/.git WORKDIR /app/op-proposer diff --git a/ops/scripts/tag-bedrock-go-modules.sh b/ops/scripts/tag-bedrock-go-modules.sh index 57ccb48363d29..f09f6c0a522ca 100755 --- a/ops/scripts/tag-bedrock-go-modules.sh +++ b/ops/scripts/tag-bedrock-go-modules.sh @@ -36,6 +36,9 @@ go get github.com/ethereum-optimism/optimism/op-service@$VERSION go get github.com/ethereum-optimism/optimism/op-chain-ops@$VERSION go mod tidy +echo Please update the version to ${VERSION} in op-node/version/version.go +read -p "Press [Enter] key to continue" + git add . git commit -am 'chore: Upgrade op-node dependencies' git push $BEDROCK_TAGS_REMOTE @@ -48,6 +51,9 @@ go get github.com/ethereum-optimism/optimism/op-service@$VERSION go get github.com/ethereum-optimism/optimism/op-node@$VERSION go mod tidy +echo Please update the version to ${VERSION} in op-proposer/cmd/main.go +read -p "Press [Enter] key to continue" + git add . git commit -am 'chore: Upgrade op-proposer dependencies' git push $BEDROCK_TAGS_REMOTE @@ -61,6 +67,9 @@ go get github.com/ethereum-optimism/optimism/op-node@$VERSION go get github.com/ethereum-optimism/optimism/op-proposer@$VERSION go mod tidy +echo Please update the version to ${VERSION} in op-batcher/cmd/main.go +read -p "Press [Enter] key to continue" + git add . git commit -am 'chore: Upgrade op-batcher dependencies' git push $BEDROCK_TAGS_REMOTE