From 59823ab8f0ec3801cb61106e20e95ca5d5f34929 Mon Sep 17 00:00:00 2001 From: jachen-sh <107783392+jachen-sh@users.noreply.github.com> Date: Wed, 29 Nov 2023 10:55:03 -0800 Subject: [PATCH] build mainnet 1.14.2 (#168) --- .github/workflows/docker.yaml | 2 +- README.md | 4 ++-- sui | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 8af72b1..ddb011c 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -10,7 +10,7 @@ on: - main env: - SUI_GIT_REVISION: 5849f68 # devnet-v1.15.0 + SUI_GIT_REVISION: mainnet-v1.14.2 concurrency: docker diff --git a/README.md b/README.md index cc2a97e..2a18823 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Multi-platform docker images for [Sui](https://sui.io/). These are built from the official release source code from [Sui](https://github.com/MystenLabs/sui/releases). -The images are tagged with the corresponding release version, e.g. `mainnet-v1.13.2`. +The images are tagged with the corresponding release version, e.g. `mainnet-v1.14.2`. Please refer to the [GitHub Packages](https://github.com/orgs/shinamicorp/packages?repo_name=sui-docker) page for available versions. @@ -22,7 +22,7 @@ Please refer to the [GitHub Packages](https://github.com/orgs/shinamicorp/packag - Contains a single `sui-node` binary, geared towards running Sui fullnodes. - Image entrypoint set to `sui-node`, so you can directly run commands like this: ``` - docker run --rm -it ghcr.io/shinamicorp/sui-node:mainnet-v1.13.2 --help + docker run --rm -it ghcr.io/shinamicorp/sui-node:mainnet-v1.14.2 --help ``` - In practice, you'll need to mount volumes for config, genesis, and data storage etc. - [sui](https://github.com/shinamicorp/sui-docker/pkgs/container/sui) diff --git a/sui b/sui index db73be8..f0968d9 100755 --- a/sui +++ b/sui @@ -13,7 +13,7 @@ import sys from pathlib import Path from subprocess import run -SUI_IMAGE = "ghcr.io/shinamicorp/sui:mainnet-v1.13.2" +SUI_IMAGE = "ghcr.io/shinamicorp/sui:mainnet-v1.14.2" def sui(*args: str) -> None: