-
Notifications
You must be signed in to change notification settings - Fork 5
69 lines (55 loc) · 1.72 KB
/
publish_deb.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
60
61
62
63
64
65
66
67
68
69
name: Publish deb package
on:
push:
branches:
master
jobs:
create_release:
runs-on: panda-arc
outputs:
v-version: ${{ steps.version.outputs.v-version }}
steps:
- name: Get next version
uses: reecetech/[email protected]
id: version
with:
release_branch: master
use_api: true
build_deb_2004:
needs: create_release
runs-on: ubuntu-20.04
steps:
- name: Install git
run: sudo apt-get -qq update -y && sudo apt-get -qq install cmake ninja-build rapidjson-dev -y
- name: Check out
uses: actions/checkout@v4
- name: Build package
working-directory: .
run: mkdir build && cd build && cmake -GNinja .. && ninja && ninja package
- name: Upload debian package to release
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ needs.create_release.outputs.v-version }}
files: |
build/*.deb
build_deb_2204:
needs: create_release
runs-on: ubuntu-22.04
steps:
- name: Install git
run: sudo apt-get -qq update -y && sudo apt-get -qq install cmake ninja-build rapidjson-dev -y
- name: Check out
uses: actions/checkout@v4
- name: Build package
working-directory: .
run: mkdir build && cd build && cmake -GNinja .. && ninja && ninja package
- name: Upload debian package to release
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ needs.create_release.outputs.v-version }}
files: |
build/*.deb