Skip to content

Commit a50dd9b

Browse files
authored
Remove private from naming
1 parent 46ea432 commit a50dd9b

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/build-container-bootc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
uses: actions/checkout@v4
1616
- name: Run podman build - base
1717
run: |
18-
podman build -t ghcr.io/gbraad-homelab/private-forgejo/bootc:latest \
18+
podman build -t ghcr.io/gbraad-homelab/forgejo/bootc:latest \
1919
--build-arg=BASE_IMAGE="ghcr.io/gbraad-homelab/private-base/bootc" \
2020
--build-arg=BASE_VERSION="latest" \
2121
-f containers/Containerfile .
2222
- name: Push image to ghcr.io - base
2323
run: |
2424
podman push --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} \
25-
ghcr.io/gbraad-homelab/private-forgejo/bootc:latest
25+
ghcr.io/gbraad-homelab/forgejo/bootc:latest

.github/workflows/build-container.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
- name: Check out repository code
1515
uses: actions/checkout@v4
1616
- name: Run podman build - base
17-
run: podman build -t ghcr.io/gbraad-homelab/private-forgejo:latest -f containers/Containerfile .
17+
run: podman build -t ghcr.io/gbraad-homelab/forgejo:latest -f containers/Containerfile .
1818
- name: Push image to ghcr.io - base
19-
run: podman push --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} ghcr.io/gbraad-homelab/private-forgejo:latest
19+
run: podman push --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} ghcr.io/gbraad-homelab/forgejo:latest

.github/workflows/build-image-from-bootc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
workflow_dispatch:
44

55
env:
6-
IMAGE_NAME: ghcr.io/gbraad-homelab/private-forgejo/bootc:latest
6+
IMAGE_NAME: ghcr.io/gbraad-homelab/forgejo/bootc:latest
77
DISK_TYPE: qcow2
88
ROOTFS: xfs
99
ARCH: amd64
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Remove unwanted stuff
25-
uses: gbraad-devenv/remove-unwanted@v1
25+
uses: gbraad-actions/remove-unwanted@v1
2626

2727
- uses: actions/checkout@v4
2828

.github/workflows/tailscale-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88

99
steps:
1010
- name: Remove unwanted stuff
11-
uses: gbraad-devenv/remove-unwanted@v1
11+
uses: gbraad-actions/remove-unwanted@v1
1212
- name: Run system container with `podman`
1313
run: |
14-
podman run -d --name forgejo --hostname forgejo-${HOSTNAME} --systemd=always --cap-add=NET_RAW --cap-add=NET_ADMIN --cap-add=SYS_ADMIN --device=/dev/net/tun --device=/dev/fuse --cap-add AUDIT_CONTROL ghcr.io/gbraad-homelab/private-forgejo:latest
14+
podman run -d --name forgejo --hostname forgejo-${HOSTNAME} --systemd=always --cap-add=NET_RAW --cap-add=NET_ADMIN --cap-add=SYS_ADMIN --device=/dev/net/tun --device=/dev/fuse --cap-add AUDIT_CONTROL ghcr.io/gbraad-homelab/forgejo:latest
1515
- name: Tailscale setup (root)
1616
run: |
1717
until podman exec forgejo tailscale up --auth-key ${TAILSCALE_AUTHKEY}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ Forgejo for private/internal use in (Bootable) Containers
66
$ podman run -d --name forgejo --hostname ${HOSTNAME}-forgejo \
77
--net=ncentre-bridge --ip 10.0.21.150 \
88
--cap-add=NET_ADMIN --cap-add=NET_RAW --device=/dev/net/tun --cap-add AUDIT_CONTROL \
9-
ghcr.io/gbraad-homelab/private-forgejo:latest
9+
ghcr.io/gbraad-homelab/forgejo:latest
1010
```

0 commit comments

Comments
 (0)