Skip to content

Commit 91beefe

Browse files
authored
Merge pull request #260 from PySpur-Dev/fix/multi-platform-images
feat: publish multiplatform images
2 parents 5344eb6 + f5cbe65 commit 91beefe

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
with:
2525
ref: ${{ github.event.release.tag_name }}
2626

27+
- name: Set up Docker Buildx
28+
uses: docker/setup-buildx-action@v2
29+
2730
- name: Log in to the Container registry
2831
uses: docker/login-action@v3
2932
with:
@@ -46,6 +49,7 @@ jobs:
4649
context: .
4750
file: ./Dockerfile.backend
4851
push: true
52+
platforms: linux/amd64,linux/arm64
4953
target: production
5054
tags: ${{ steps.meta-backend.outputs.tags }}
5155
labels: ${{ steps.meta-backend.outputs.labels }}

backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "pyspur"
7-
version = "0.1.15"
7+
version = "0.1.16"
88
description = "PySpur is a Graph UI for building AI Agents in Python"
99
requires-python = ">=3.11"
1010
license = "Apache-2.0"

0 commit comments

Comments
 (0)