labels: backend: docker clone: git: image: woodpeckerci/plugin-git:2.5.1 settings: partial: false depth: 10 steps: build: image: archlinux/archlinux:base-devel pull: true volumes: - /mnt/archlinux/nyyu:/repo commands: - cp -f conf/{makepkg,pacman}.conf /etc/ - cat conf/pacman-conf.d-noextract.conf >> /etc/pacman.conf - pacman-key --init - pacman -Syu git jq pacman-contrib pandoc-bin unzip zip --noconfirm - useradd build -m - "echo 'build ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers" - mkdir /build - chown -R build:build . /build - sudo -u build --preserve-env=PGP_KEY,PGP_PWD,PGP_ID sh -c 'mkdir ~/.gnupg && echo -e "default-cache-ttl 3600\nallow-preset-passphrase" > ~/.gnupg/gpg-agent.conf && echo "$PGP_KEY" | gpg --import --no-tty --batch --yes && echo "$PGP_PWD" | /usr/lib/gnupg/gpg-preset-passphrase --preset $PGP_ID' - sudo -u build --preserve-env=CI_REPO_CLONE_URL,CI_COMMIT_BRANCH,CI_PREV_COMMIT_SHA,GIT_PASSWORD sh -c './build.sh' secrets: [pgp_id, pgp_key, pgp_pwd, git_password] when: branch: master event: [push, cron, tag, manual]