-
Notifications
You must be signed in to change notification settings - Fork 225
44 lines (40 loc) · 1.28 KB
/
debug-gpg.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
38
39
40
41
42
43
44
name: Debug GPG
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Clone the repositories
run: |
git clone https://github.com/canonical/dqlite
git clone https://github.com/canonical/dqlite-ppa -b dqlite --depth 1
- name: Setup dependencies
run: |
sudo apt-get update -qq
sudo apt-get install -qq debhelper devscripts gnupg
- name: Setup GPG signing key
env:
DUMMY_SECRET_KEY: ${{ secrets.DUMMY_SECRET_KEY }}
run: |
echo "$DUMMY_SECRET_KEY" > private-key.asc
sha256sum private-key.asc
gpg --import --batch private-key.asc
- name: Delete GPG signing key file
if: always()
run: |
rm -f private-key.asc
- name: Build source package
env:
DEBFULLNAME: "nobody"
DEBEMAIL: "[email protected]"
TARGET: "noble"
run: |
cp -R dqlite-ppa/debian dqlite/
cd dqlite/
VERSION="$(git describe --tags | sed -e "s/^v//" -e "s/-/+git/")"
dch --create \
--distribution ${TARGET} \
--package dqlite \
--newversion ${VERSION}~${TARGET}1 \
"Automatic build from Github"
debuild -S -sa -d -k${{ vars.DUMMY_PUBLIC_KEY }}