Skip to content

Commit b2fb795

Browse files
committed
build: use upstream docker image
1 parent 7c9a5e6 commit b2fb795

1 file changed

Lines changed: 16 additions & 2 deletions

File tree

.github/workflows/xivlauncher.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,15 @@ on:
2121
jobs:
2222
build:
2323
runs-on: ubuntu-latest
24-
container: ghcr.io/centzilius/arch-makepkg:latest
24+
container: archlinux:latest
2525
steps:
26+
- name: Prepare container
27+
run: |
28+
echo -e "\n[multilib]\nInclude = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf
29+
pacman-key --init
30+
pacman -Sy --noconfirm --needed archlinux-keyring
31+
pacman -Syu --noconfirm base-devel git rsync openssh
32+
useradd -m -s /bin/bash builder
2633
- uses: actions/checkout@v6
2734
- name: Prepare workspace
2835
run: |
@@ -47,8 +54,15 @@ jobs:
4754
needs: build
4855
if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event.inputs.aur == 'true' }}
4956
runs-on: ubuntu-latest
50-
container: ghcr.io/centzilius/arch-makepkg:latest
57+
container: archlinux:latest
5158
steps:
59+
- name: Prepare container
60+
run: |
61+
echo -e "\n[multilib]\nInclude = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf
62+
pacman-key --init
63+
pacman -Sy --noconfirm --needed archlinux-keyring
64+
pacman -Syu --noconfirm base-devel git rsync openssh
65+
useradd -m -s /bin/bash builder
5266
- name: Checkout repo
5367
uses: actions/checkout@v6
5468
- name: Checkout AUR

0 commit comments

Comments
 (0)