-
Notifications
You must be signed in to change notification settings - Fork 8
42 lines (39 loc) · 993 Bytes
/
build-debs.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
name: 'Build .deb Packages'
on:
workflow_dispatch:
push:
jobs:
build-bookworm:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
uses: jtdor/build-deb-action@v1
env:
DEB_BUILD_OPTIONS: noautodbgsym
with:
buildpackage-opts: -b -us -uc
docker-image: debian:bookworm-slim
- name: Upload
uses: actions/upload-artifact@v4
with:
name: bookworm
path: debian/artifacts/*.deb
build-mantic:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
uses: jtdor/build-deb-action@v1
env:
DEB_BUILD_OPTIONS: noautodbgsym
with:
buildpackage-opts: -b -us -uc
docker-image: ubuntu:mantic
- name: Upload
uses: actions/upload-artifact@v4
with:
name: mantic
path: debian/artifacts/*.deb