Skip to content

Commit

Permalink
Add optional bootc images
Browse files Browse the repository at this point in the history
  • Loading branch information
gbraad authored Jan 18, 2025
1 parent 5b85f03 commit becf0dd
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build-container-code.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build container - code cli
run-name: building container - code cli
name: build container - code cli + bootc
run-name: building container - code cli + bootc
on:
schedule:
- cron: "0 0 1 * *"
Expand Down Expand Up @@ -28,3 +28,13 @@ jobs:
run: |
podman push --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} \
ghcr.io/gbraad-devenv/fedora/code-cli:41
- name: Run podman build - code-cli-bootc
run: |
podman build -t ghcr.io/gbraad-devenv/fedora/code-cli-bootc:41 \
--build-arg=BASE_IMAGE="ghcr.io/gbraad-devenv/fedora/systemd-bootc" \
--build-arg=BASE_VERSION=41 \
-f containers/Containerfile-code-cli .
- name: Push image to ghcr.io - code-cli-bootc
run: |
podman push --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} \
ghcr.io/gbraad-devenv/fedora/code-cli-bootc:41
14 changes: 12 additions & 2 deletions .github/workflows/build-container-rdesktop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build container - rdeskop
run-name: building container - rdesktop
name: build container - rdeskop + bootc
run-name: building container - rdesktop + bootc
on:
schedule:
- cron: "0 0 1 * *"
Expand Down Expand Up @@ -28,3 +28,13 @@ jobs:
run: |
podman push --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} \
ghcr.io/gbraad-devenv/fedora/rdesktop:41
- name: Run podman build - rdesktop-bootc
run: |
podman build -t ghcr.io/gbraad-devenv/fedora/rdesktop-bootc:41 \
--build-arg=BASE_IMAGE="ghcr.io/gbraad-devenv/fedora/systemd-bootc" \
--build-arg=BASE_VERSION=41 \
-f containers/Containerfile-rdesktop .
- name: Push image to ghcr.io - rdesktop-bootc
run: |
podman push --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} \
ghcr.io/gbraad-devenv/fedora/rdesktop-bootc:41

0 comments on commit becf0dd

Please sign in to comment.