Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
include:
- os: ubuntu-22.04
arch: linux/amd64
sha: eeff273671467b8fa351ab3d40709759462dc03d9f7b50a1b207b37982ce40a9
sha: 9d6d5484f980d0a17f86c492c1262015c2afb66280bdb97215b79fde6a0261c5
arch-suffix: amd64
- os: depot-ubuntu-22.04-arm
arch: linux/arm64
sha: eae9c0e91ddd39bd1826d6a7a313a73d42a8449ef5113e9d6d118b559cb809ba
sha: 04ca894ae0b53f0fa54eaacc173ce40363c9a95ea5450f773716a84ef650a69b
arch-suffix: arm64
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG TARGETARCH
# We don't hardcode it here because we have to be able to build both
# amd and arm
ARG SYSBOX_SHA
ARG SYSBOX_VERSION="0.7.0"
ARG SYSBOX_VERSION="0.7.1"
ARG SYSBOX_DEB="sysbox-ce_$SYSBOX_VERSION-0.linux_$TARGETARCH.deb"

# Copy configuration files to appropriate locations
Expand Down
4 changes: 2 additions & 2 deletions scripts/sysbox_sha.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ set -euo pipefail

case "${1:-linux/$(go env GOARCH)}" in
linux/amd64)
printf '%s\n' 'eeff273671467b8fa351ab3d40709759462dc03d9f7b50a1b207b37982ce40a9'
printf '%s\n' '9d6d5484f980d0a17f86c492c1262015c2afb66280bdb97215b79fde6a0261c5'
;;
linux/arm64)
printf '%s\n' 'eae9c0e91ddd39bd1826d6a7a313a73d42a8449ef5113e9d6d118b559cb809ba'
printf '%s\n' '04ca894ae0b53f0fa54eaacc173ce40363c9a95ea5450f773716a84ef650a69b'
;;
*)
echo "unsupported architecture: ${1:-}" >&2
Expand Down