Skip to content

Commit 139aea4

Browse files
committed
Desktop CD workflow
1 parent f2d0aac commit 139aea4

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/workflows/desktop_make.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Desktop package apps
2+
on: [push, workflow_dispatch]
3+
4+
jobs:
5+
package:
6+
name: Package desktop apps
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- name: Setup
13+
uses: ./.github/actions/setup
14+
15+
- name: Run Conveyor
16+
uses: hydraulic-software/conveyor/actions/build@v18.0
17+
with:
18+
command: make site
19+
signing_key: ${{ secrets.CONVEYOR_SIGNING_KEY }}
20+
agree_to_license: 1
21+
22+
- name: Upload artifacts
23+
uses: actions/upload-artifact@v4
24+
with:
25+
name: apps
26+
path: output

conveyor.conf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ app {
2121
url-schemes = [ ooni ]
2222

2323
icons = "icons/app.svg"
24+
25+
machines = ["windows.amd64", "mac"]
2426
}
2527

2628
app.linux.desktop-file."Desktop Entry" {

0 commit comments

Comments
 (0)