rebrand!: Antergos NeXT -> Euri Linux
This commit is contained in:
+15
-16
@@ -5,15 +5,10 @@ on:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: host
|
||||
container:
|
||||
image: artixlinux/artixlinux:base
|
||||
options: --privileged
|
||||
runs-on: artix-runner
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install dependencies
|
||||
- name: Install dependencies first
|
||||
run: |
|
||||
pacman -Syu --noconfirm --needed --overwrite='*' \
|
||||
artools \
|
||||
@@ -21,24 +16,28 @@ jobs:
|
||||
squashfs-tools \
|
||||
sudo \
|
||||
python \
|
||||
python-pip
|
||||
python-pip \
|
||||
curl \
|
||||
ca-certificates
|
||||
|
||||
- name: Bootstrap Antergos package signing key
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Bootstrap Euri package signing key
|
||||
run: |
|
||||
KEY_FINGERPRINT=AA644A095D2AF5F950FADB57C51BFE8D3A985236
|
||||
curl -fsSL -o /tmp/antergos-next.gpg https://raw.githubusercontent.com/Antergos-NeXT/antergos-packages/master/packages/antergos-next-keyring/antergos-next.gpg
|
||||
curl -fsSL -o /tmp/euri.gpg https://antergos-nas.taild4360b.ts.net/Antergos-NeXT/antergos-packages/raw/branch/master/packages/antergos-next-keyring/antergos-next.gpg
|
||||
pacman-key --init
|
||||
pacman-key --add /tmp/antergos-next.gpg
|
||||
pacman-key --add /tmp/euri.gpg
|
||||
gpg --homedir /etc/pacman.d/gnupg --batch --with-colons --fingerprint "$KEY_FINGERPRINT" | grep -q "fpr:::::::::$KEY_FINGERPRINT:"
|
||||
pacman-key --lsign-key "$KEY_FINGERPRINT"
|
||||
rm -f /tmp/antergos-next.gpg
|
||||
rm -f /tmp/euri.gpg
|
||||
|
||||
|
||||
- name: Set up WORKSPACE_DIR
|
||||
run: |
|
||||
echo "WORKSPACE_DIR=${{ gitea.workspace }}" >> $GITHUB_ENV
|
||||
|
||||
- name: Override pacman.conf with antergos-pkgs repo
|
||||
- name: Override pacman.conf with euri-pkgs repo
|
||||
run: |
|
||||
mkdir -p /root/.config/artools/pacman.conf.d
|
||||
cp "pacman.conf.d/iso-x86_64.conf" \
|
||||
@@ -48,11 +47,11 @@ jobs:
|
||||
|
||||
- name: Build ISO
|
||||
run: |
|
||||
sudo -E ./buildiso -p antergos
|
||||
sudo -E ./buildiso -p euri
|
||||
|
||||
- name: Generate checksums
|
||||
run: |
|
||||
ISO=$(ls iso/antergos/antergos-*.iso 2>/dev/null | head -1)
|
||||
ISO=$(ls iso/euri/euri-*.iso 2>/dev/null | head -1)
|
||||
[[ -z "$ISO" || ! -f "$ISO" ]] && { echo "No ISO found"; exit 1; }
|
||||
sha256sum "$ISO" > "$ISO.sha256"
|
||||
cat "$ISO.sha256"
|
||||
@@ -60,5 +59,5 @@ jobs:
|
||||
- name: Upload ISO artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Antergos-NeXT-ISO
|
||||
name: Euri-Linux-ISO
|
||||
path: iso/
|
||||
|
||||
Reference in New Issue
Block a user