Skip to content

Commit 4b83121

Browse files
committed
Fixing arm
1 parent 212f7f7 commit 4b83121

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/call-build-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
app_name: "simplelogin"
1515
release_type: "github"
1616
release_url: "https://api.github.com/repos/simple-login/app"
17-
target-arch: "amd64"
17+
target-arch: "64"
1818
secrets:
1919
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}

.github/workflows/call-check-and-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
app_name: "simplelogin"
1414
release_type: "github"
1515
release_url: "https://api.github.com/repos/simple-login/app"
16-
target-arch: "amd64"
16+
target-arch: "64"
1717
secrets:
1818
repo_release_token: ${{ secrets.repo_release_token }}

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,10 @@ RUN \
5353
pkg-config \
5454
ninja-build \
5555
clang && \
56-
curl -o /tmp/uv-installer.sh -L https://astral.sh/uv/install.sh && \
57-
sh /tmp/uv-installer.sh && \
56+
curl -o /tmp/uv.tar.gz -sL "https://github.com/astral-sh/uv/releases/latest/download/uv-x86_64-unknown-linux-gnu.tar.gz" && \
57+
tar xzf /tmp/uv.tar.gz -C /tmp/ && \
58+
mv /tmp/uv-x86_64-unknown-linux-gnu/uv /usr/bin/uv && \
59+
mv /tmp/uv-x86_64-unknown-linux-gnu/uvx /usr/bin/uvx && \
5860
uv python install `cat .python-version` && \
5961
uv sync --locked && \
6062
echo "**** install runtime packages ****" && \

0 commit comments

Comments
 (0)