Skip to content

Commit c50efb6

Browse files
committed
Fix GHCR repository names
Signed-off-by: kiranpranay <pranay@cottonseeds.org>
1 parent 994c167 commit c50efb6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- name: Build and Push Image
2121
run: |
22-
IMAGE=ghcr.io/${{ github.repository_owner }}/stmorg.weberq.in:latest
22+
IMAGE=ghcr.io/${{ github.repository_owner }}/stmorg:latest
2323
docker build -t $IMAGE .
2424
docker push $IMAGE
2525
@@ -35,7 +35,7 @@ jobs:
3535
username: ${{ secrets.VPS_USER }}
3636
key: ${{ secrets.VPS_SSH_KEY }}
3737
script: |
38-
cd /home/weberqbot/apps/stmorg.weberq.in
38+
cd /home/weberqbot/apps/stmorg
3939
4040
echo "🔐 Login to GHCR..."
4141
echo "${{ secrets.GHCR_PAT }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin

docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11

22
services:
33
web:
4-
image: ghcr.io/weberq/stmorg.weberq.in:latest
5-
container_name: stmorg.weberq.in
4+
image: ghcr.io/weberq/stmorg:latest
5+
container_name: stmorg
66
restart: unless-stopped
77
labels:
88
- "traefik.enable=true"
9-
- "traefik.http.routers.stmorg.weberq.in.rule=Host(`stmorg.weberq.in`)"
10-
- "traefik.http.routers.stmorg.weberq.in.entrypoints=web"
11-
- "traefik.http.services.stmorg.weberq.in.loadbalancer.server.port=80"
9+
- "traefik.http.routers.stmorg.rule=Host(`stmorg.weberq.in`)"
10+
- "traefik.http.routers.stmorg.entrypoints=web"
11+
- "traefik.http.services.stmorg.loadbalancer.server.port=80"
1212
networks:
1313
- web_network
1414

0 commit comments

Comments
 (0)