Skip to content

Commit

Permalink
ci: configure a GitHub Action build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
JanPokorny committed Oct 4, 2024
1 parent 9664c2e commit 82d579b
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 3 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/docker-build-push.yaml
Original file line number Diff line number Diff line change
@@ -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 }}
4 changes: 2 additions & 2 deletions executor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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ý <[email protected]>", "Tomáš Dvořák <[email protected]>" ]
Expand Down

0 comments on commit 82d579b

Please sign in to comment.