Skip to content

Commit 82d5306

Browse files
author
charlesgauthereau
committed
chore(release): 1.0.4-rc.16
1 parent 52714cd commit 82d5306

4 files changed

Lines changed: 7 additions & 15 deletions

File tree

.github/workflows/docker.yml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -129,14 +129,9 @@ jobs:
129129
tags: ${{ steps.set-tags.outputs.amd64_image }}
130130
target: ${{ inputs.target }}
131131

132-
- name: Set job output for manifest
133-
id: set-job-output
134-
run: |
135-
echo "image=${{ steps.set-tags.outputs.amd64_image }}" >> $GITHUB_OUTPUT
136-
137132
build-arm64:
138133
name: Build ARM64 Image
139-
runs-on: ubuntu-24.04-arm # native ARM64 runner
134+
runs-on: ubuntu-24.04-arm
140135
outputs:
141136
image: ${{ steps.set-job-output.outputs.image }}
142137
steps:
@@ -166,10 +161,6 @@ jobs:
166161
tags: ${{ steps.set-tags.outputs.arm64_image }}
167162
target: ${{ inputs.target }}
168163

169-
- name: Set job output for manifest
170-
id: set-job-output
171-
run: |
172-
echo "image=${{ steps.set-tags.outputs.arm64_image }}" >> $GITHUB_OUTPUT
173164

174165
create-manifest:
175166
name: Create Multi-Arch Manifest
@@ -186,9 +177,10 @@ jobs:
186177
- name: Create Docker manifest
187178
run: |
188179
REF_NAME=${GITHUB_REF#refs/tags/}
180+
189181
IMAGE="${{ inputs.image_name }}:$REF_NAME"
190-
AMD64_IMAGE="${{ needs.build-amd64.outputs.image }}"
191-
ARM64_IMAGE="${{ needs.build-arm64.outputs.image }}"
182+
AMD64_IMAGE="$IMAGE-amd64"
183+
ARM64_IMAGE="$IMAGE-arm64"
192184
193185
echo "AMD64_IMAGE=$AMD64_IMAGE"
194186
echo "ARM64_IMAGE=$ARM64_IMAGE"

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ keywords:
2222
- self-hosted
2323
- portabase
2424
license: Apache-2.0
25-
version: 1.0.4-rc.15
25+
version: 1.0.4-rc.16
2626
date-released: "2026-01-28"

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "portabase-agent"
3-
version = "1.0.4-rc.15"
3+
version = "1.0.4-rc.16"
44
edition = "2024"
55

66
[dependencies]

0 commit comments

Comments
 (0)