-
Notifications
You must be signed in to change notification settings - Fork 3
112 lines (108 loc) · 3.13 KB
/
pre-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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
on:
push:
branches:
- main
pull_request:
name: build-and-prerelease
jobs:
flatpak-release-target:
name: Test build of flatpak release target
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-46
options: --privileged
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: bilelmoussaoui/flatpak-github-actions/[email protected]
with:
bundle: toolboxtuner-release.flatpak
manifest-path: build-aux/org.kuchelmeister.ToolboxTuner.json
run-tests: true
cache-key: flatpak-builder-${{ github.sha }}
upload-artifact: false
- uses: actions/upload-artifact@v4
with:
name: flatpak
path: |
*.flatpak
flatpak-screenshot-target:
name: Test build of screenshot target
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-46
options: --privileged
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: bilelmoussaoui/flatpak-github-actions/[email protected]
with:
bundle: toolboxtuner-screenshot.flatpak
manifest-path: build-aux/org.kuchelmeister.ToolboxTuner.Screenshot.json
run-tests: true
cache-key: flatpak-builder-${{ github.sha }}
upload-artifact: false
- uses: actions/upload-artifact@v4
with:
name: flatpak
path: |
*.flatpak
flatpak-dev-target:
name: Build flatpak dev/pre-release target
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-46
options: --privileged
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: bilelmoussaoui/flatpak-github-actions/[email protected]
with:
bundle: toolboxtuner-dev.flatpak
manifest-path: build-aux/org.kuchelmeister.ToolboxTuner.Devel.json
run-tests: true
cache-key: flatpak-builder-${{ github.sha }}
upload-artifact: false
- uses: actions/upload-artifact@v4
with:
name: flatpak
path: |
*.flatpak
vendor:
name: vendor-prerelease
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: dtolnay/rust-toolchain@stable
- run: ./build-aux/dist-vendor.sh dist . && tar czf vendor.tar.gz dist
- run: sha256sum vendor.tar.gz > vendor.tar.gz.sha256sum
- uses: actions/upload-artifact@v4
with:
name: vendor
path: |
*.tar.gz
*.sha256sum
publish-prerelease:
name: publish-prerelease
needs: [flatpak, vendor]
runs-on: ubuntu-latest
if: startsWith(github.ref_name, 'main') && github.ref_type == 'branch'
steps:
- uses: actions/download-artifact@v4
- name: Show files
run: ls -R
- uses: "dciborow/[email protected]"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: true
automatic_release_tag: dev
title: 'Latest Development Build'
files: |
**/*-dev.flatpak
**/*.tar.gz
**/*.sha256sum