From 82d579b0d56b67b0b2b117d7928860c221356dfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Pokorn=C3=BD?= Date: Fri, 4 Oct 2024 15:15:40 +0200 Subject: [PATCH] ci: configure a GitHub Action build pipeline --- .github/workflows/docker-build-push.yaml | 51 ++++++++++++++++++++++++ executor/Dockerfile | 4 +- pyproject.toml | 2 +- 3 files changed, 54 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/docker-build-push.yaml diff --git a/.github/workflows/docker-build-push.yaml b/.github/workflows/docker-build-push.yaml new file mode 100644 index 0000000..3390516 --- /dev/null +++ b/.github/workflows/docker-build-push.yaml @@ -0,0 +1,51 @@ +name: Multi-Platform Docker Build and Push + +on: + push: + tags: + - 'v*' + +jobs: + build-and-push: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + submodules: 'recursive' + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to DockerHub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + + - name: Extract version from tag + id: get_version + run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT + + - name: Build and push bee-code-interpreter + uses: docker/build-push-action@v6 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: true + tags: | + iambeeagent/bee-code-interpreter:latest + iambeeagent/bee-code-interpreter:${{ steps.get_version.outputs.VERSION }} + + - name: Build and push bee-code-executor + uses: docker/build-push-action@v6 + with: + context: ./executor + platforms: linux/amd64,linux/arm64 + push: true + tags: | + iambeeagent/bee-code-executor:latest + iambeeagent/bee-code-executor:${{ steps.get_version.outputs.VERSION }} diff --git a/executor/Dockerfile b/executor/Dockerfile index f9db8d1..b3d80f6 100644 --- a/executor/Dockerfile +++ b/executor/Dockerfile @@ -12,8 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -ARG GO_VERSION="1.23.0" -ARG UPM_VERSION="2.5.0" +ARG GO_VERSION="1.23" +ARG UPM_VERSION="2.5.2" ARG ALPINE_VERSION="3.20" ARG RUST_VERSION="1.81" diff --git a/pyproject.toml b/pyproject.toml index 9f2523e..76d8c09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bee-code-interpreter" -version = "0.0.11" +version = "0.0.12" license = "Apache-2.0" description = "" authors = [ "Jan Pokorný ", "Tomáš Dvořák " ]