Skip to content

Commit ee1cd8d

Browse files
authored
Merge pull request #36 from Portabase/feat/arm-architecture
feat/arm-architecture
2 parents 8f7f9b4 + e530463 commit ee1cd8d

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

.github/workflows/docker.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@ jobs:
5858
echo "tags=$TAGS" >> $GITHUB_OUTPUT
5959
echo "tags2=$TAGS2" >> $GITHUB_OUTPUT
6060
61+
- name: Set up QEMU (enables multi-arch emulation)
62+
uses: docker/setup-qemu-action@v3
63+
64+
- name: Set up Docker Buildx
65+
uses: docker/setup-buildx-action@v3
6166

6267
- name: Log in to Docker Hub account 1
6368
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
@@ -70,6 +75,7 @@ jobs:
7075
with:
7176
context: .
7277
file: ${{ inputs.dockerfile }}
78+
platforms: linux/amd64,linux/arm64
7379
push: true
7480
tags: ${{ steps.set-tags.outputs.tags }}
7581
target: ${{ inputs.target }}
@@ -85,6 +91,7 @@ jobs:
8591
with:
8692
context: .
8793
file: ${{ inputs.dockerfile }}
94+
platforms: linux/amd64,linux/arm64
8895
push: true
8996
tags: ${{ steps.set-tags.outputs.tags2 }}
9097
target: ${{ inputs.target }}

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ keywords:
2626
- web-ui
2727
- agent
2828
license: Apache-2.0
29-
version: 1.2.1
30-
date-released: "2026-01-20"
29+
version: 1.2.2-rc.2
30+
date-released: "2026-01-21"

docker-compose.prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
# context: .
88
# dockerfile: docker/dockerfile/Dockerfile
99
# target: prod
10-
image: solucetechnologies/portabase:1.1.4-rc.2
10+
image: solucetechnologies/portabase:1.2.2-rc.2
1111
ports:
1212
- '8887:80'
1313
environment:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "portabase",
3-
"version": "1.2.1",
3+
"version": "1.2.2-rc.2",
44
"private": true,
55
"scripts": {
66
"dev": "next dev --turbopack -p 8887",

src/features/storages/providers/local.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import {StorageDeleteInput, StorageGetInput, StorageResult, StorageUploadInput}
55
import fs from "node:fs";
66
import {getServerUrl} from "@/utils/get-server-url";
77

8-
// const BASE_DIR = "/private/uploads/files/";
98
const BASE_DIR = "/private/uploads/";
109

1110
export async function uploadLocal(

src/features/storages/providers/s3.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ async function getS3Client(config: S3Config) {
2121
});
2222
}
2323

24-
// Keep it like that
2524
const BASE_DIR = "";
2625

2726

0 commit comments

Comments
 (0)