mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-08-04 09:25:20 +02:00
130 lines
3.7 KiB
YAML
130 lines
3.7 KiB
YAML
name: AUR Nightly (kst4contest-git)
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Nightly Runtime Artifacts"]
|
|
types: [completed]
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
update-aur-git:
|
|
if: >-
|
|
github.event_name == 'workflow_dispatch' ||
|
|
github.event.workflow_run.conclusion == 'success'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
image: archlinux:latest
|
|
|
|
steps:
|
|
- name: Install dependencies
|
|
run: |
|
|
pacman -Sy --noconfirm git openssh base-devel
|
|
useradd -m builder
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v7
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Mark workspace as safe Git directory
|
|
run: |
|
|
git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
|
|
|
- name: Compute pkgver
|
|
id: ver
|
|
run: |
|
|
BASE=$(grep -m1 '<version>' pom.xml \
|
|
| sed 's/.*<version>\(.*\)<\/version>.*/\1/' \
|
|
| sed 's/[-.]nightly//')
|
|
|
|
GIT_PKGVER="${BASE}.r$(git rev-list --count HEAD).g$(git rev-parse --short HEAD)"
|
|
|
|
echo "Computed pkgver: ${GIT_PKGVER}"
|
|
echo "pkgver=${GIT_PKGVER}" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Update PKGBUILD
|
|
env:
|
|
PKGVER: ${{ steps.ver.outputs.pkgver }}
|
|
run: |
|
|
sed -i "s/^pkgver=.*/pkgver=${PKGVER}/" \
|
|
packaging/aur/kst4contest-git/PKGBUILD
|
|
|
|
- name: Generate .SRCINFO
|
|
run: |
|
|
cp -r packaging/aur/kst4contest-git /tmp/kst4contest-git
|
|
chown -R builder:builder /tmp/kst4contest-git
|
|
|
|
su builder -c \
|
|
"cd /tmp/kst4contest-git && makepkg --printsrcinfo > .SRCINFO"
|
|
|
|
cp /tmp/kst4contest-git/.SRCINFO \
|
|
packaging/aur/kst4contest-git/.SRCINFO
|
|
|
|
echo "Generated .SRCINFO:"
|
|
cat packaging/aur/kst4contest-git/.SRCINFO
|
|
|
|
- name: Set up AUR SSH
|
|
env:
|
|
AUR_SSH_PRIVATE_KEY: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|
|
run: |
|
|
mkdir -p ~/.ssh
|
|
|
|
printf '%s\n' "${AUR_SSH_PRIVATE_KEY}" \
|
|
> ~/.ssh/aur_ed25519
|
|
|
|
chmod 600 ~/.ssh/aur_ed25519
|
|
|
|
ssh-keyscan -t ed25519 aur.archlinux.org \
|
|
>> ~/.ssh/known_hosts
|
|
|
|
cat >> ~/.ssh/config << 'EOF'
|
|
Host aur.archlinux.org
|
|
IdentityFile ~/.ssh/aur_ed25519
|
|
User aur
|
|
EOF
|
|
|
|
chmod 600 ~/.ssh/config
|
|
chmod 600 ~/.ssh/known_hosts
|
|
|
|
- name: Push package metadata to AUR
|
|
run: |
|
|
git config --global user.email "philipp@wagnersnetz.de"
|
|
git config --global user.name "Philipp Wagner"
|
|
|
|
AUR_DIR="/tmp/aur/kst4contest-git"
|
|
|
|
mkdir -p "$(dirname "${AUR_DIR}")"
|
|
|
|
git clone \
|
|
"ssh://aur@aur.archlinux.org/kst4contest-git.git" \
|
|
"${AUR_DIR}" || {
|
|
echo "AUR repository could not be cloned; initializing it locally."
|
|
mkdir -p "${AUR_DIR}"
|
|
git -C "${AUR_DIR}" init
|
|
git -C "${AUR_DIR}" remote add origin \
|
|
"ssh://aur@aur.archlinux.org/kst4contest-git.git"
|
|
}
|
|
|
|
cp packaging/aur/kst4contest-git/PKGBUILD \
|
|
"${AUR_DIR}/PKGBUILD"
|
|
|
|
cp packaging/aur/kst4contest-git/.SRCINFO \
|
|
"${AUR_DIR}/.SRCINFO"
|
|
|
|
git -C "${AUR_DIR}" add PKGBUILD .SRCINFO
|
|
|
|
if git -C "${AUR_DIR}" diff --cached --quiet; then
|
|
echo "kst4contest-git: package metadata is already current."
|
|
else
|
|
git -C "${AUR_DIR}" commit \
|
|
-m "Update pkgver to ${{ steps.ver.outputs.pkgver }}"
|
|
|
|
git -C "${AUR_DIR}" push origin HEAD:master
|
|
|
|
echo "kst4contest-git: successfully pushed to AUR."
|
|
fi |