Skip to content

Commit e93e3f3

Browse files
committed
fix
1 parent ce34afa commit e93e3f3

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/build_gh_runner_images.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -823,8 +823,8 @@ jobs:
823823
password: "${{ secrets.GITHUB_TOKEN }}"
824824
continue-on-error: true
825825

826-
#https://hub.docker.com/r/pkgforge/debian-guix.dockerfile
827-
- name: Docker Build and Push (debian-guix.dockerfile)
826+
#https://hub.docker.com/r/pkgforge/debian-guix
827+
- name: Docker Build and Push (debian-guix)
828828
uses: docker/build-push-action@v6
829829
with:
830830
context: /tmp/DOCKERFILES/
@@ -833,10 +833,10 @@ jobs:
833833
build-args: |
834834
ARCH=$(uname -m)
835835
tags: |
836-
pkgforge/debian-guix.dockerfile:${{ matrix.arch }}
837-
pkgforge/debian-guix.dockerfile:${{ matrix.arch }}-${{ env.DOCKER_TAG }}
838-
ghcr.io/pkgforge/devscripts/debian-guix.dockerfile:${{ matrix.arch }}
839-
ghcr.io/pkgforge/devscripts/debian-guix.dockerfile:${{ matrix.arch }}-${{ env.DOCKER_TAG }}
836+
pkgforge/debian-guix:${{ matrix.arch }}
837+
pkgforge/debian-guix:${{ matrix.arch }}-${{ env.DOCKER_TAG }}
838+
ghcr.io/pkgforge/devscripts/debian-guix:${{ matrix.arch }}
839+
ghcr.io/pkgforge/devscripts/debian-guix:${{ matrix.arch }}-${{ env.DOCKER_TAG }}
840840
push: true
841841
continue-on-error: true
842842
#------------------------------------------------------------------------------------#

Github/Runners/archlinux-builder.dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ RUN <<EOS
3434
echo "nameserver 8.8.8.8" >> "/etc/resolv.conf"
3535
#Key-Verification
3636
#sed 's/^.*SigLevel\s*=.*$/SigLevel = Never/' -i "/etc/pacman.conf"
37+
#Download user
38+
sed 's/DownloadUser/#DownloadUser/g' -i "/etc/pacman.conf"
3739
#Update
3840
pacman -Syu --noconfirm || true
3941
EOS
@@ -54,7 +56,7 @@ RUN <<EOS
5456
compgen -u
5557
#Fix perms
5658
chmod 0440 "/etc/sudoers"
57-
visudo -c
59+
visudo -c || true
5860
EOS
5961
##Change Default shell for runner to bash
6062
RUN <<EOS

0 commit comments

Comments
 (0)