forked from axoflow/axosyslog
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (35 loc) · 931 Bytes
/
packages.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
name: Packages (PR / push)
on:
pull_request:
push:
jobs:
create-source-tarball:
runs-on: ubuntu-latest
steps:
- name: Checkout AxoSyslog source
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Prepare docker image
run: ./dbld/rules cache-image-tarball
- name: Create source tarball
run: ./dbld/rules pkg-tarball
- name: Store source tarball as artifact
uses: actions/upload-artifact@v4
with:
name: source-tarball
path: dbld/build/*.tar.gz
create-packages:
needs: create-source-tarball
uses: ./.github/workflows/create-packages.yml
with:
source-tarball-artifact-name: source-tarball
dbld-image-mode: cache
distros: '[
"almalinux-8",
"almalinux-9",
"debian-bookworm",
"debian-testing",
"fedora-41",
"ubuntu-noble"
]'