-
Notifications
You must be signed in to change notification settings - Fork 45
37 lines (31 loc) · 994 Bytes
/
submit.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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
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 }}