@@ -102,11 +102,11 @@ jobs:
102
102
name : arch-latest
103
103
path : release
104
104
105
- build-f35 :
106
- name : Build Fedora 35 package
105
+ build-f36 :
106
+ name : Build Fedora 36 package
107
107
runs-on : ubuntu-latest
108
108
container :
109
- image : fedora:35
109
+ image : fedora:36
110
110
options : --security-opt seccomp=unconfined
111
111
steps :
112
112
- name : Checkout code
@@ -140,13 +140,15 @@ jobs:
140
140
- name : Upload artifacts
141
141
uses : actions/upload-artifact@v1
142
142
with :
143
- name : fedora-35 -latest
143
+ name : fedora-36 -latest
144
144
path : fedora/out/noarch
145
145
146
- build-f34 :
147
- name : Build Fedora 34 package
146
+ build-f35 :
147
+ name : Build Fedora 35 package
148
148
runs-on : ubuntu-latest
149
- container : fedora:34
149
+ container :
150
+ image : fedora:35
151
+ options : --security-opt seccomp=unconfined
150
152
steps :
151
153
- name : Checkout code
152
154
uses : actions/checkout@v2
@@ -179,13 +181,13 @@ jobs:
179
181
- name : Upload artifacts
180
182
uses : actions/upload-artifact@v1
181
183
with :
182
- name : fedora-34 -latest
184
+ name : fedora-35 -latest
183
185
path : fedora/out/noarch
184
186
185
- build-f33 :
186
- name : Build Fedora 33 package
187
+ build-f34 :
188
+ name : Build Fedora 34 package
187
189
runs-on : ubuntu-latest
188
- container : fedora:33
190
+ container : fedora:34
189
191
steps :
190
192
- name : Checkout code
191
193
uses : actions/checkout@v2
@@ -218,12 +220,12 @@ jobs:
218
220
- name : Upload artifacts
219
221
uses : actions/upload-artifact@v1
220
222
with :
221
- name : fedora-33 -latest
223
+ name : fedora-34 -latest
222
224
path : fedora/out/noarch
223
225
224
226
release :
225
227
name : Publish release
226
- needs : [build-deb, build-arch, build-f35 , build-f34 , build-f33 ]
228
+ needs : [build-deb, build-arch, build-f36 , build-f35 , build-f34 ]
227
229
runs-on : ubuntu-latest
228
230
steps :
229
231
- name : Download Debian artifacts
@@ -236,6 +238,11 @@ jobs:
236
238
with :
237
239
name : arch-latest
238
240
241
+ - name : Download Fedora 36 artifacts
242
+ uses : actions/download-artifact@v1
243
+ with :
244
+ name : fedora-36-latest
245
+
239
246
- name : Download Fedora 35 artifacts
240
247
uses : actions/download-artifact@v1
241
248
with :
@@ -360,12 +367,12 @@ jobs:
360
367
git commit -m "Update Arch Linux secure-boot MOK"
361
368
git push --set-upstream origin "${update_branch}"
362
369
363
- repo-f35 :
364
- name : Update Fedora 35 package repository
370
+ repo-f36 :
371
+ name : Update Fedora 36 package repository
365
372
needs : [release]
366
373
runs-on : ubuntu-latest
367
374
container :
368
- image : fedora:35
375
+ image : fedora:36
369
376
options : --security-opt seccomp=unconfined
370
377
steps :
371
378
- name : Install dependencies
@@ -375,7 +382,7 @@ jobs:
375
382
- name : Download artifacts
376
383
uses : actions/download-artifact@v1
377
384
with :
378
- name : fedora-35 -latest
385
+ name : fedora-36 -latest
379
386
380
387
- name : Update repository
381
388
env :
@@ -389,8 +396,8 @@ jobs:
389
396
git clone -b "${BRANCH_STAGING}" "${repo}" repo
390
397
391
398
# copy packages
392
- cp fedora-35 -latest/* repo/fedora/f35
393
- cd repo/fedora/f35
399
+ cp fedora-36 -latest/* repo/fedora/f36
400
+ cd repo/fedora/f36
394
401
395
402
# parse git tag from ref
396
403
GIT_TAG=$(echo $GIT_REF | sed 's|^refs/tags/||g')
@@ -409,14 +416,16 @@ jobs:
409
416
update_branch="${BRANCH_STAGING}-$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)"
410
417
git checkout -b "${update_branch}"
411
418
git add .
412
- git commit -m "Update Fedora 35 secure-boot MOK"
419
+ git commit -m "Update Fedora 36 secure-boot MOK"
413
420
git push --set-upstream origin "${update_branch}"
414
421
415
- repo-f34 :
416
- name : Update Fedora 34 package repository
422
+ repo-f35 :
423
+ name : Update Fedora 35 package repository
417
424
needs : [release]
418
425
runs-on : ubuntu-latest
419
- container : fedora:34
426
+ container :
427
+ image : fedora:35
428
+ options : --security-opt seccomp=unconfined
420
429
steps :
421
430
- name : Install dependencies
422
431
run : |
@@ -425,7 +434,7 @@ jobs:
425
434
- name : Download artifacts
426
435
uses : actions/download-artifact@v1
427
436
with :
428
- name : fedora-34 -latest
437
+ name : fedora-35 -latest
429
438
430
439
- name : Update repository
431
440
env :
@@ -439,8 +448,8 @@ jobs:
439
448
git clone -b "${BRANCH_STAGING}" "${repo}" repo
440
449
441
450
# copy packages
442
- cp fedora-34 -latest/* repo/fedora/f34
443
- cd repo/fedora/f34
451
+ cp fedora-35 -latest/* repo/fedora/f35
452
+ cd repo/fedora/f35
444
453
445
454
# parse git tag from ref
446
455
GIT_TAG=$(echo $GIT_REF | sed 's|^refs/tags/||g')
@@ -459,14 +468,14 @@ jobs:
459
468
update_branch="${BRANCH_STAGING}-$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)"
460
469
git checkout -b "${update_branch}"
461
470
git add .
462
- git commit -m "Update Fedora 34 secure-boot MOK"
471
+ git commit -m "Update Fedora 35 secure-boot MOK"
463
472
git push --set-upstream origin "${update_branch}"
464
473
465
- repo-f33 :
466
- name : Update Fedora 33 package repository
474
+ repo-f34 :
475
+ name : Update Fedora 34 package repository
467
476
needs : [release]
468
477
runs-on : ubuntu-latest
469
- container : fedora:33
478
+ container : fedora:34
470
479
steps :
471
480
- name : Install dependencies
472
481
run : |
@@ -475,7 +484,7 @@ jobs:
475
484
- name : Download artifacts
476
485
uses : actions/download-artifact@v1
477
486
with :
478
- name : fedora-33 -latest
487
+ name : fedora-34 -latest
479
488
480
489
- name : Update repository
481
490
env :
@@ -489,8 +498,8 @@ jobs:
489
498
git clone -b "${BRANCH_STAGING}" "${repo}" repo
490
499
491
500
# copy packages
492
- cp fedora-33 -latest/* repo/fedora/f33
493
- cd repo/fedora/f33
501
+ cp fedora-34 -latest/* repo/fedora/f34
502
+ cd repo/fedora/f34
494
503
495
504
# parse git tag from ref
496
505
GIT_TAG=$(echo $GIT_REF | sed 's|^refs/tags/||g')
@@ -509,5 +518,5 @@ jobs:
509
518
update_branch="${BRANCH_STAGING}-$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)"
510
519
git checkout -b "${update_branch}"
511
520
git add .
512
- git commit -m "Update Fedora 33 secure-boot MOK"
521
+ git commit -m "Update Fedora 34 secure-boot MOK"
513
522
git push --set-upstream origin "${update_branch}"
0 commit comments