GitHub action to publish the Ubuntu PPA (Personal Package Archives) packages.
Required The PPA repository, e.g. yuezk/globalprotect-openconnect
.
Required GPG private key exported as an ASCII armored version or its base64 encoding, exported with the following command.
gpg --output private.pgp --armor --export-secret-key <KEY_ID or EMAIL>
Optional Passphrase of the GPG private key.
Required The tarball of the package to be published.
Required The email address of the maintainer.
Required The full name of the maintainer.
Optional The debian directory, will be merged with the tarball.
Optional Whether to keep the changelog, default to empty.
If set to any non-empty value, the changelog file should be provided in the debian_dir
directory. The action will update the changelog file with the package name, revision and distribution.
Optional The series to which the package will be published, separated by space. e.g., "bionic focal"
.
Default to the series that are supported at the moment, i.e., the output of distro-info --supported
.
Optional The extra series to which the package will be published, separated by space. e.g., "bionic focal"
.
Optional The revision of the package, default to 1
.
Optional The template of the new version, default to {VERSION}-ppa{REVISION}~ubuntu{SERIES_VERSION}
.
Available variables:
{VERSION}
: The version of the package. e.g.,1.0.0
{REVISION}: The revision of the package. e.g.,
1
{SERIES}
: The series of the package. e.g.,focal
{SERIES_VERSION}
: The version of the series. e.g.,20.04
Optional The extra PPA this package depends on, separated by space. e.g., "liushuyu-011/rust-bpo-1.75"
.
Optional The arguments for debmake
name: Publish PPA
uses: yuezk/publish-ppa-package@v2
with:
repository: "yuezk/globalprotect-openconnect"
gpg_private_key: ${{ secrets.PPA_GPG_PRIVATE_KEY }}
gpg_passphrase: ${{ secrets.PPA_GPG_PASSPHRASE }}
tarball: publish-ppa/globalprotect-openconnect-*/.build/tarball/*.tar.gz
debian_dir: publish-ppa/globalprotect-openconnect-*/.build/debian
deb_email: "<email>"
deb_fullname: "<full name>"
extra_ppa: "liushuyu-011/rust-bpo-1.75"
- GlobalProtect-openconnect: A GlobalProtect VPN client for Linux, written in Rust, based on OpenConnect and Tauri, supports SSO with MFA, Yubikey, etc.