3 Commits

Author SHA1 Message Date
Chris Richardson
6883446078 asd
Some checks failed
Main / Build arm64v8 image (push) Failing after 28s
Main / Push arm64v8 image (push) Has been skipped
Main / Push manifest (push) Has been skipped
Main / Publish GitHub release (push) Has been skipped
2025-07-10 23:32:56 -04:00
Chris Richardson
dc02217869 asd
Some checks failed
Main / Build arm64v8 image (push) Failing after 22s
Main / Push arm64v8 image (push) Has been skipped
Main / Push manifest (push) Has been skipped
Main / Publish GitHub release (push) Has been skipped
2025-07-10 23:28:58 -04:00
Chris Richardson
968880f2cc asd
Some checks failed
Main / Build arm64v8 image (push) Successful in 10m46s
Main / Push arm64v8 image (push) Successful in 2m2s
Main / Push manifest (push) Failing after 16s
Main / Publish GitHub release (push) Has been skipped
2025-07-10 22:20:14 -04:00
2 changed files with 13 additions and 9 deletions

View File

@@ -56,10 +56,10 @@ jobs:
with: with:
name: "dist-${{ matrix.arch }}" name: "dist-${{ matrix.arch }}"
path: "./dist/" path: "./dist/"
- name: "Login to Docker Hub" # - name: "Login to Docker Hub"
uses: "docker/login-action@v3" # uses: "docker/login-action@v3"
with: # with:
registry: "d.lilpenguins.com" # registry: "d.lilpenguins.com"
- name: "Load and push image" - name: "Load and push image"
run: | run: |
make "load-${{ matrix.arch }}-image" "push-${{ matrix.arch }}-image" make "load-${{ matrix.arch }}-image" "push-${{ matrix.arch }}-image"
@@ -74,10 +74,10 @@ jobs:
steps: steps:
- name: "Checkout project" - name: "Checkout project"
uses: "actions/checkout@v4" uses: "actions/checkout@v4"
- name: "Login to Docker Hub" # - name: "Login to Docker Hub"
uses: "docker/login-action@v3" # uses: "docker/login-action@v3"
with: # with:
registry: "d.lilpenguins.com" # registry: "d.lilpenguins.com"
- name: "Push manifest" - name: "Push manifest"
run: | run: |
make push-cross-manifest make push-cross-manifest

View File

@@ -14,6 +14,10 @@ RUN <<-EOF
sed -i '/^Components: main$/s/$/ contrib non-free non-free-firmware/' /etc/apt/sources.list.d/debian.sources sed -i '/^Components: main$/s/$/ contrib non-free non-free-firmware/' /etc/apt/sources.list.d/debian.sources
EOF EOF
RUN <<-EOF
sed -i '/^Components: main$/s/$/ contrib non-free non-free-firmware/' /etc/apt/sources.list.d/debian.sources
EOF
# Install packages # Install packages
RUN <<-EOF RUN <<-EOF
export DEBIAN_FRONTEND=noninteractive export DEBIAN_FRONTEND=noninteractive
@@ -237,7 +241,7 @@ EOF
## "main" stage ## "main" stage
################################################## ##################################################
m4_ifdef([[CROSS_ARCH]], [[FROM docker.io/CROSS_ARCH/ubuntu:24.04]], [[FROM docker.io/ubuntu:24.04]]) AS main m4_ifdef([[CROSS_ARCH]], [[FROM dtcooper/raspberrypi-os:latest]], [[FROM dtcooper/raspberrypi-os:latest]]) AS main
SHELL ["/bin/sh", "-euc"] SHELL ["/bin/sh", "-euc"]