Publish Packages #34
This file contains hidden or 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/tag-exists-action@v1.6.0 | |
| 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/release-downloader@v1.9 | |
| 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 | |
| # Rename the source tarball without the offline suffix | |
| mv *.tar.gz $(basename *.tar.gz .offline.tar.gz).tar.gz | |
| # Extract the source tarball | |
| tar -xzf *.tar.gz | |
| # Prepare the debian directory with custom files | |
| cd globalprotect-openconnect-*/ | |
| mkdir -p .build/debian | |
| sed 's/@RUST@/rust-all(>=1.71)/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: "k3vinyue@gmail.com" | |
| deb_fullname: "Kevin Yue" | |
| extra_ppa: "yuezk/globalprotect-openconnect liushuyu-011/rust-bpo-1.75" | |
| series: "bionic focal" | |
| revision: ${{ inputs.revision }} |