-
Notifications
You must be signed in to change notification settings - Fork 21
57 lines (54 loc) · 1.86 KB
/
push-to-gh-pkgs.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
name: Push images to GitHub Packages
on:
workflow_dispatch:
push:
branches: [ "master" ]
# Publish semver tags as releases.
#tags: [ '[2022]0701-001' ]
# On a job that uses a reusable workflow, it seems you cannot
# use env on a with block (https://github.com/actions/runner/issues/1189#issuecomment-1741672276)
env:
VERSION: "20240102-001"
jobs:
simplerisk-jammy:
name: 'Push simplerisk/simplerisk image based on Ubuntu 22.04 (Jammy)'
uses: ./.github/workflows/push-to-gh-pkgs_rw.yml
with:
context_path: "simplerisk"
dockerfile_path: "simplerisk/jammy/Dockerfile"
image_name: "simplerisk"
version: "20241113-001"
os_version: "jammy"
secrets: inherit
simplerisk-noble:
name: 'Push simplerisk/simplerisk image based on Ubuntu 24.04 (Noble)'
uses: ./.github/workflows/push-to-gh-pkgs_rw.yml
with:
context_path: "simplerisk"
dockerfile_path: "simplerisk/noble/Dockerfile"
image_name: "simplerisk"
version: "20241113-001"
os_version: "noble"
main_image: true
secrets: inherit
simplerisk-minimal-php81:
name: 'Push simplerisk/simplerisk-minimal image based on PHP 8.1 with Apache'
uses: ./.github/workflows/push-to-gh-pkgs_rw.yml
with:
context_path: "simplerisk-minimal"
dockerfile_path: "simplerisk-minimal/php81/Dockerfile"
image_name: "simplerisk-minimal"
version: "20241113-001"
os_version: "php81"
secrets: inherit
simplerisk-minimal-php83:
name: 'Push simplerisk/simplerisk-minimal image based on PHP 8.3 with Apache'
uses: ./.github/workflows/push-to-gh-pkgs_rw.yml
with:
context_path: "simplerisk-minimal"
dockerfile_path: "simplerisk-minimal/php83/Dockerfile"
image_name: "simplerisk-minimal"
version: "20241113-001"
os_version: "php83"
main_image: true
secrets: inherit