Publish Packages #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Packages | |
on: | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'Tag to publish' | |
required: true | |
revision: | |
description: 'Package revision' | |
required: true | |
default: "1" | |
ppa: | |
description: 'Publish to PPA' | |
type: boolean | |
required: true | |
default: true | |
obs: | |
description: 'Publish to OBS' | |
type: boolean | |
required: true | |
default: true | |
aur: | |
description: 'Publish to AUR' | |
type: boolean | |
required: true | |
default: true | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check tag exists | |
uses: mukunku/[email protected] | |
id: check-tag | |
with: | |
tag: ${{ inputs.tag }} | |
- name: Exit if tag does not exist | |
run: | | |
if [[ "${{ steps.check-tag.outputs.exists }}" == "false" ]]; then | |
echo "Tag ${{ inputs.tag }} does not exist" | |
exit 1 | |
fi | |
publish-ppa: | |
needs: check | |
if: ${{ inputs.ppa }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Prepare workspace | |
run: rm -rf publish-ppa && mkdir publish-ppa | |
- name: Download ${{ inputs.tag }} offline source code | |
uses: robinraju/[email protected] | |
with: | |
token: ${{ secrets.GH_PAT }} | |
tag: ${{ inputs.tag }} | |
fileName: globalprotect-openconnect-*.offline.tar.gz | |
tarBall: false | |
zipBall: false | |
out-file-path: publish-ppa | |
- name: Patch the source code | |
run: | | |
cd publish-ppa | |
# Remove the `offline` from the tarball name | |
new_tarball=$(ls globalprotect-openconnect-*.offline.tar.gz | sed 's/.offline//') | |
mv globalprotect-openconnect-*.offline.tar.gz $new_tarball | |
# Extract the source code | |
tar -xf $new_tarball | |
cd globalprotect-openconnect-*/ | |
# Prepare the debian directory with custom files | |
mkdir -p .build/debian | |
sed 's/@RUST@/rust-all(>=1.70)/g' packaging/deb/control.in > .build/debian/control | |
sed 's/@OFFLINE@/1/g' packaging/deb/rules.in > .build/debian/rules | |
cp packaging/deb/postrm .build/debian/postrm | |
- name: Publish to PPA | |
uses: yuezk/publish-ppa-package@gp_2.3.x | |
with: | |
repository: "yuezk/globalprotect-openconnect" | |
gpg_private_key: ${{ secrets.PPA_GPG_PRIVATE_KEY }} | |
gpg_passphrase: ${{ secrets.PPA_GPG_PASSPHRASE }} | |
tarball: publish-ppa/globalprotect-openconnect-*.tar.gz | |
debian_dir: publish-ppa/globalprotect-openconnect-*/.build/debian | |
deb_email: "[email protected]" | |
deb_fullname: "Kevin Yue" | |
extra_ppa: "yuezk/globalprotect-openconnect liushuyu-011/rust-bpo-1.75" | |
series: "bionic focal" | |
revision: ${{ inputs.revision }} |