fix the image names for the docker workflows
Some checks failed
Build the docker image for the web server / build (push) Waiting to run
Build the docker image for the get_account.py script / build (push) Has been cancelled

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn 2025-03-24 23:36:28 +03:00
parent f1078aa647
commit de8f69b182
Signed by: ngn
GPG Key ID: A3654DF5AD9F641D
2 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ on:
env:
REGISTRY: git.ngn.tf
IMAGE: ${{gitea.repository}}
IMAGE: ${{gitea.repository}}/get-account
jobs:
build:
@ -24,5 +24,5 @@ jobs:
- name: Build and push the image
run: |
docker build . -f docker/get_account/Dockerfile --tag ${{env.REGISTRY}}/${{env.IMAGE}}-get-account:latest
docker push ${{env.REGISTRY}}/${{env.IMAGE}}-get-account:latest
docker build . -f docker/nitter/Dockerfile --tag ${{env.REGISTRY}}/${{env.IMAGE}}:latest
docker push ${{env.REGISTRY}}/${{env.IMAGE}}:latest

View File

@ -6,7 +6,7 @@ on:
env:
REGISTRY: git.ngn.tf
IMAGE: ${{gitea.repository}}
IMAGE: ${{gitea.repository}}/web
jobs:
build: