Hopefully made ci non-root stuff work
ci/woodpecker/push/woodpecker Pipeline failed Details

main
Jef Roosens 2021-12-31 14:48:32 +01:00
parent 62104a16d9
commit 3be31d3ad7
Signed by: Jef Roosens
GPG Key ID: 955C0660072F691F
1 changed files with 8 additions and 1 deletions

View File

@ -2,6 +2,13 @@ pipeline:
build:
image: 'archlinux:latest'
commands:
- pacman -Syu --needed --noconfirm base-devel
# Update packages
- pacman -Syu --needed --noconfirm base-devel sudo
# Create non-root user to perform build & switch to their home
- groupadd -g 1000 builder
- useradd -mg builder builder
- cd /home/builder
# Build the package
- makepkg -s
# Publish the package
- 'curl -F "file=@$(ls *.pkg*)" -H "X-API-KEY: $API_KEY" https://pkgs.rustybever.be/api/publish'