-
-
Notifications
You must be signed in to change notification settings - Fork 4
59 lines (49 loc) · 1.39 KB
/
debian_release.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Debian Release
on:
workflow_run:
workflows: ["Debian Build"]
types:
- completed
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@master
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
- name: List keys
run: gpg -K
- name: Package
working-directory: debian
run: |
dpkg-scanpackages --multiversion . > Packages
gzip -k -f Packages
- name: Release
working-directory: debian
run: |
apt-ftparchive release . > Release
gpg --default-key "D0CF12A37328A46974F4DA35B6121C7BD46BDEE5" -abs -o - Release > Release.gpg
gpg --default-key "D0CF12A37328A46974F4DA35B6121C7BD46BDEE5" --clearsign -o - Release > InRelease
- name: Set git config
run: |
git config user.name github-actions
git config user.email [email protected]
- name: Commit
continue-on-error: true
run: |
git pull
git add .
git commit -m "Release Debian package"
- name: Push updated deb package
continue-on-error: true
uses: jcs090218/github-push-action@master
with:
branch: master
rebase: true
retry: 7