Skip to content

Commit

Permalink
Rename output
Browse files Browse the repository at this point in the history
  • Loading branch information
gbraad authored Jan 21, 2025
1 parent a33ba05 commit 059f1fe
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-container-bootc.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build containers (bootc)
run-name: building containers (bootc)
name: build container (bootc)
run-name: building container (bootc)
on:
workflow_dispatch:
jobs:
Expand All @@ -13,13 +13,13 @@ jobs:
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Run podman build - nextcloud
- name: Run podman build - nextcloud (bootc)
run: |
podman build -t ghcr.io/gbraad-homelab/nextcloud/hub9-bootc \
podman build -t ghcr.io/gbraad-homelab/nextcloud-bootc \
--build-arg=BASE_IMAGE="ghcr.io/gbraad-homelab/private-base/bootc" \
--build-arg=BASE_VERSION="latest" \
-f containers/Containerfile .
- name: Push image to ghcr.io - nextcloud
- name: Push image to ghcr.io - nextcloud (bootc)
run: |
podman push --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} \
ghcr.io/gbraad-homelab/nextcloud/hub9-bootc
ghcr.io/gbraad-homelab/nextcloud-bootc
14 changes: 10 additions & 4 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build containers
run-name: building containers
name: build container
run-name: building container
on:
workflow_dispatch:
jobs:
Expand All @@ -14,6 +14,12 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- name: Run podman build - nextcloud
run: podman build -t ghcr.io/gbraad-homelab/nextcloud/hub9 -f containers/Containerfile .
run: |
podman build -t ghcr.io/gbraad-homelab/nextcloud \
--build-arg=BASE_IMAGE="ghcr.io/gbraad-homelab/private-base" \
--build-arg=BASE_VERSION="latest" \
-f containers/Containerfile .
- name: Push image to ghcr.io - nextcloud
run: podman push --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} ghcr.io/gbraad-homelab/nextcloud/hub9
run: |
podman push --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} \
ghcr.io/gbraad-homelab/nextcloud
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: build qcow2 from bootc image
name: build disk image (bootc)
run-name: build disk image (bootc)
on:
workflow_dispatch:

env:
IMAGE_NAME: ghcr.io/gbraad-homelab/nextcloud/hub9-bootc:latest
IMAGE_NAME: ghcr.io/gbraad-homelab/nextcloud-bootc:latest
DISK_TYPE: qcow2
ROOTFS: xfs
ARCH: amd64
Expand Down

0 comments on commit 059f1fe

Please sign in to comment.