-
Notifications
You must be signed in to change notification settings - Fork 4
160 lines (158 loc) · 5.14 KB
/
10.0.x.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
name: 10.0.x
on:
schedule:
- cron: '0 0 2,16 * *'
workflow_dispatch:
branches:
- master
jobs:
xorg64:
uses: vanilla-dpup/woof-CE/.github/workflows/[email protected]
with:
repo: vanilla-dpup/woof-CE
ref: vanilladpup-10.0.x
name: "Vanilla Dpup"
version: 10.0.${{ github.run_number }}
arch: x86_64
compat-distro: debian
compat-distro-version: bookworm64
kernel: debian-bookworm
prefix: vanilladpup
artifact: vanilladpup-x86_64-10.0.${{ github.run_number }}-xorg
retention: 1
variant: xorg
xwayland64:
uses: vanilla-dpup/woof-CE/.github/workflows/[email protected]
with:
repo: vanilla-dpup/woof-CE
ref: vanilladpup-10.0.x
name: "Vanilla Dpup"
version: 10.0.${{ github.run_number }}
arch: x86_64
compat-distro: debian
compat-distro-version: bookworm64
kernel: debian-bookworm
prefix: vanilladpup
artifact: vanilladpup-x86_64-10.0.${{ github.run_number }}-xwayland
retention: 1
variant: xwayland
retro64:
uses: vanilla-dpup/woof-CE/.github/workflows/[email protected]
with:
repo: vanilla-dpup/woof-CE
ref: vanilladpup-10.0.x
name: "Vanilla Dpup"
version: 10.0.${{ github.run_number }}
arch: x86_64
compat-distro: debian
compat-distro-version: bookworm64
kernel: debian-bookworm
prefix: vanilladpup
artifact: vanilladpup-x86_64-10.0.${{ github.run_number }}-retro
retention: 1
variant: retro
xorg32:
uses: vanilla-dpup/woof-CE/.github/workflows/[email protected]
with:
repo: vanilla-dpup/woof-CE
ref: vanilladpup-10.0.x
name: "Vanilla Dpup"
version: 10.0.${{ github.run_number }}
arch: x86
compat-distro: debian
compat-distro-version: bookworm
kernel: debian-bookworm
prefix: vanilladpup
artifact: vanilladpup-x86-10.0.${{ github.run_number }}-xorg
retention: 1
variant: xorg
retro32:
uses: vanilla-dpup/woof-CE/.github/workflows/[email protected]
with:
repo: vanilla-dpup/woof-CE
ref: vanilladpup-10.0.x
name: "Vanilla Dpup"
version: 10.0.${{ github.run_number }}
arch: x86
compat-distro: debian
compat-distro-version: bookworm
kernel: debian-bookworm
prefix: vanilladpup
artifact: vanilladpup-x86-10.0.${{ github.run_number }}-retro
retention: 1
variant: retro
upload64:
needs: [xorg64, xwayland64, retro64]
runs-on: ubuntu-20.04
steps:
- name: Download xorg build artifact
uses: actions/download-artifact@v3
with:
name: vanilladpup-x86_64-10.0.${{ github.run_number }}-xorg
path: xorg
- name: Download xwayland build artifact
uses: actions/download-artifact@v3
with:
name: vanilladpup-x86_64-10.0.${{ github.run_number }}-xwayland
path: xwayland
- name: Download retro build artifact
uses: actions/download-artifact@v3
with:
name: vanilladpup-x86_64-10.0.${{ github.run_number }}-retro
path: retro
- name: Rename ISO
run: |
mv -f xorg/*.iso vanilladpup-10.0.${{ github.run_number }}.iso
mv -f xwayland/*.iso vanilladpup-10.0.${{ github.run_number }}-xwayland.iso
mv -f retro/*.iso vanilladpup-10.0.${{ github.run_number }}-retro.iso
- name: Create Release
uses: softprops/action-gh-release@v1
with:
name: vanilladpup-x86_64-10.0.${{ github.run_number }}
tag_name: vanilladpup-x86_64-10.0.${{ github.run_number }}
fail_on_unmatched_files: true
files: |
*.iso
xorg/kernel_sources-*.sfs
upload32:
needs: [xorg32, retro32]
runs-on: ubuntu-20.04
steps:
- name: Download xorg build artifact
uses: actions/download-artifact@v3
with:
name: vanilladpup-x86-10.0.${{ github.run_number }}-xorg
path: xorg
- name: Download retro build artifact
uses: actions/download-artifact@v3
with:
name: vanilladpup-x86-10.0.${{ github.run_number }}-retro
path: retro
- name: Rename ISO
run: |
mv -f xorg/*.iso vanilladpup-10.0.${{ github.run_number }}.iso
mv -f retro/*.iso vanilladpup-10.0.${{ github.run_number }}-retro.iso
- name: Create Release
uses: softprops/action-gh-release@v1
with:
name: vanilladpup-x86-10.0.${{ github.run_number }}
tag_name: vanilladpup-x86-10.0.${{ github.run_number }}
fail_on_unmatched_files: true
files: |
*.iso
xorg/kernel_sources-*.sfs
cleanup:
needs: [upload64, upload32]
runs-on: ubuntu-20.04
strategy:
matrix:
arch: [x86_64, x86]
steps:
- name: Delete old ${{ matrix.arch }} releases
uses: dev-drprasad/[email protected]
with:
keep_latest: 1
delete_tag_pattern: vanilladpup-${{ matrix.arch }}-10.0.
delete_tags: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}