Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Rocky Linux and CentOS #53

Merged
merged 4 commits into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/container-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ jobs:
version: 8.9
context: rockylinux-8
file: rockylinux-8/Containerfile-8.9
- os: rockylinux
version: 8.10
context: rockylinux-8
file: rockylinux-8/Containerfile-8.10
- os: rockylinux
version: 9
context: rockylinux-9
Expand All @@ -67,6 +71,10 @@ jobs:
version: 9.3
context: rockylinux-9
file: rockylinux-9/Containerfile-9.3
- os: rockylinux
version: 9.4
context: rockylinux-9
file: rockylinux-9/Containerfile-9.4
- os: leap
version: 15
context: leap
Expand Down
5 changes: 3 additions & 2 deletions rockylinux-8/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ all: Containerfile-8.6
all: Containerfile-8.7
all: Containerfile-8.8
all: Containerfile-8.9
all: Containerfile-8.10

.PHONY: clean
clean:
Expand All @@ -11,5 +12,5 @@ clean:
Containerfile-8.%: Containerfile-vault
env releasever=8.$* envsubst <Containerfile-vault >$@

Containerfile-8.9: Containerfile-fixed
env releasever=8.9 envsubst <Containerfile-fixed >$@
Containerfile-8.10: Containerfile-fixed
env releasever=8.10 envsubst <Containerfile-fixed >$@
5 changes: 3 additions & 2 deletions rockylinux-9/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ all: Containerfile-9.0
all: Containerfile-9.1
all: Containerfile-9.2
all: Containerfile-9.3
all: Containerfile-9.4

.PHONY: clean
clean:
Expand All @@ -11,5 +12,5 @@ clean:
Containerfile-9.%: Containerfile-vault
env release=9.$* envsubst '$$release' <Containerfile-vault >$@

Containerfile-9.3: Containerfile-fixed
env release=9.3 envsubst '$$release' <Containerfile-fixed >$@
Containerfile-9.4: Containerfile-fixed
env release=9.4 envsubst '$$release' <Containerfile-fixed >$@
Loading