mirror of
https://github.com/Brodino96/webkit2gtk-automator.git
synced 2026-05-05 22:29:57 +02:00
25 lines
839 B
Bash
25 lines
839 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: all available cores)
|
|
# Reduce this if you want to leave headroom for other processes on the server
|
|
# NPROC=4
|