Skip to content

Commit

Permalink
Push to nightly PPA
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanmore committed Sep 12, 2024
1 parent d9b8adb commit 2b34754
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build-linux-debian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,25 @@ jobs:
with:
name: pdf-over-nightly-${{ env.commit_sha }}-debian
path: pdf-over-build/pdf-over-nightly.deb
- name: Init Nightly PPA
uses: actions/checkout@v3
with:
repository: a-sit/ppa-nightly
ref: 'main'
token: ${{ secrets.ASIT_PPA_BOT_PPA_NIGHTLY }}
path: ppa-nightly
- name: Setup Nightly PPA git config
run: |
cd ppa-nightly
git config user.name "A-SIT Bot"
git config user.email "[email protected]"
- name: Push Debian Package to Nightly PPA
run: |
mv pdf-over-build/*.deb ppa-nightly
cd ppa-nightly
git add *.deb
git commit -m "New nightly package"
git push origin main
permissions:
contents: read
Expand Down

0 comments on commit 2b34754

Please sign in to comment.