mirror of
https://github.com/Brodino96/webkit2gtk-automator.git
synced 2026-05-05 22:29:57 +02:00
26 lines
894 B
Bash
26 lines
894 B
Bash
# GitHub credentials
|
|
# Personal access token with 'repo' and 'write:packages' scopes
|
|
GITHUB_TOKEN=your_github_token_here
|
|
|
|
# GitHub repository in the form owner/repo
|
|
GITHUB_REPO=Brodino96/webkit2gtk-automator
|
|
|
|
# Path to the SSH private key registered on your AUR account
|
|
# The key must NOT have a passphrase (or use ssh-agent)
|
|
AUR_SSH_KEY_PATH=/run/secrets/aur_id_rsa
|
|
|
|
# Name of the AUR binary package to publish to
|
|
AUR_PACKAGE_NAME=webkit2gtk-bin
|
|
|
|
# AUR maintainer info (used in the generated PKGBUILD)
|
|
AUR_MAINTAINER_NAME=Your Name
|
|
AUR_MAINTAINER_EMAIL=your@email.com
|
|
|
|
# How often to poll the AUR for updates, in seconds (default: 3600 = 1 hour)
|
|
POLL_INTERVAL_SECONDS=3600
|
|
|
|
# Number of CPU cores to use for compilation (default: 4)
|
|
# This controls both the make -jN parallelism inside the build and the CPU
|
|
# cap enforced by Docker on the container. Set it once, it applies everywhere
|
|
NPROC=4
|