Skip to content

Commit

Permalink
feat(ci): add publish PPA workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
flexiondotorg committed Nov 10, 2023
1 parent 9383ce0 commit 207f83c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/publish-ppa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Publish PPA 📦️

on:
workflow_dispatch:

jobs:
publish-ppa:
name: Publish PPA
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: yuezk/publish-ppa-package@v1
with:
repository: 'ppa:flexiondotorg/quickemu'
gpg_private_key: ${{ secrets.PPA_GPG_PRIVATE_KEY }}
gpg_passphrase: ${{ secrets.PPA_GPG_PASSPHRASE }}
pkgdir: '${{ github.workspace }}/quickemu/'

0 comments on commit 207f83c

Please sign in to comment.