Skip to content

Commit

Permalink
refactor: rework publish ppa workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
flexiondotorg committed Nov 10, 2023
1 parent 66757f4 commit 716c252
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions .github/workflows/publish-ppa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,29 @@ jobs:
name: Publish PPA
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: yuezk/publish-ppa-package@v1.0.0
- name: Import gpg key
uses: crazy-max/ghaction-import-gpg@v6
with:
repository: 'ppa:flexiondotorg/quickemu'
gpg_private_key: ${{ secrets.PPA_GPG_PRIVATE_KEY }}
gpg_passphrase: ${{ secrets.PPA_GPG_PASSPHRASE }}
pkgdir: '${{ github.workspace }}'
passphrase: ${{ secrets.PPA_GPG_PASSPHRASE }}
- name: Install dependencies
run: |
sudo apt-get -y update
sudo apt-get -y install debhelper-compat distro-info dput devscripts
- name: Publish to PPA
env:
DEBEMAIL: ${{ secrets.DEBEMAIL }}
DEBFULLNAME: ${{ secrets.DEBFULLNAME }}
run: |
REL_VER=$(grep "^readonly VERSION" quickemu | cut -d'"' -f2)
STAMP=$(date +%y%j.%H%M)
for CODENAME in $(distro-info --supported); do
rm debian/changelog
dch --package quickemu --newversion="${REL_VER}-1~${CODENAME}${STAMP}" --distribution=${CODENAME} "New upstream release." --create
dpkg-buildpackage -d -S -sa
dput ppa:quickemu-team/quickemu ../quickemu_${REL_VER}-1~${CODENAME}${STAMP}_source.changes
done

0 comments on commit 716c252

Please sign in to comment.