mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
feat(ci): add publish PPA workflow
This commit is contained in:
parent
9383ce0eb7
commit
207f83c8ce
1 changed files with 19 additions and 0 deletions
19
.github/workflows/publish-ppa.yml
vendored
Normal file
19
.github/workflows/publish-ppa.yml
vendored
Normal file
|
@ -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/'
|
Loading…
Reference in a new issue