Skip to content

Commit

Permalink
Add workflow to build source package
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Sep 26, 2024
1 parent 0ed4730 commit 590ec45
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/submit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
on:
push:
branches:
- master
workflow_dispatch:

name: Submit to launchpad

jobs:
Build:
runs-on: ubuntu-22.04
name: 'Submit to Launchpad'

steps:
- name: Prepare system
run: |
sudo apt-get update
sudo add-apt-repository -y "ppa:marutter/rrutter4.0"
sudo apt-get install -y git gpg curl devscripts equivs gdebi-core
- name: Checkout
uses: actions/checkout@v4

- name: Install build dependencies
run: |
sudo mk-build-deps -i
- name: Build and sign source package
run: |
echo "DEBUILD_TGZ_CHECK=no" >> ~/.devscripts
echo $GPG_KEY > private.pgp
cat private.pgp
echo $GPG_PASS | gpg -u 16C019F96112961CEB4F38B76094FC5BDA955A42 --batch --yes --pinentry-mode loopback --passphrase-fd 0 --import private.pgp
rm -f private.pgp
debuild -S -i -I
env:
GPG_KEY: ${{ secrets.GPG_KEY }}
GPG_PASS: ${{ secrets.GPG_PASS }}

0 comments on commit 590ec45

Please sign in to comment.