From 98b46f2ad5f140356e5ff196b5b164031c2344fc Mon Sep 17 00:00:00 2001 From: Qingping Hou Date: Sun, 28 Apr 2024 16:30:12 -0700 Subject: [PATCH] fix build cache export --- .github/workflows/roapi_release.yml | 4 +++- Cargo.lock | 2 +- roapi/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/roapi_release.yml b/.github/workflows/roapi_release.yml index 98a514e..f8db591 100644 --- a/.github/workflows/roapi_release.yml +++ b/.github/workflows/roapi_release.yml @@ -253,7 +253,9 @@ jobs: packages: write steps: - uses: actions/checkout@v2 - + # buildx setup required for build cache export + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Log in to the Container registry uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 with: diff --git a/Cargo.lock b/Cargo.lock index ee03e74..1a73e27 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4017,7 +4017,7 @@ dependencies = [ [[package]] name = "roapi" -version = "0.11.2" +version = "0.11.3" dependencies = [ "arrow-cast", "arrow-flight", diff --git a/roapi/Cargo.toml b/roapi/Cargo.toml index 7e29d0a..6bbf915 100644 --- a/roapi/Cargo.toml +++ b/roapi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "roapi" -version = "0.11.2" +version = "0.11.3" authors = ["QP Hou "] homepage = "https://github.com/roapi/roapi" license = "MIT"