diff options
author | saturneric <[email protected]> | 2025-07-05 17:21:50 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-07-05 17:21:50 +0000 |
commit | 294055cf695cf99dbe2027bb58d746de2f7cbc1a (patch) | |
tree | 4855314354cb07fde67f879693fb14dff1d9298c | |
parent | feat(docker): add Dockerfile and CI workflow for containerization (diff) | |
download | Manual-294055cf695cf99dbe2027bb58d746de2f7cbc1a.tar.gz Manual-294055cf695cf99dbe2027bb58d746de2f7cbc1a.zip |
fix(ci): correct Docker image path in CI configuration
* Updated the `DOCKER_IMAGE` variable to use the correct repository path.
* Ensures proper image building and pushing during CI workflows.
-rw-r--r-- | .gitea/workflows/ci.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 94b2b10..ca4e658 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -16,7 +16,7 @@ jobs: - name: Prepare id: prep run: | - DOCKER_IMAGE=git.stdv.de/saturneric/gpgfrontend-manual + DOCKER_IMAGE=git.stdv.de/gpgfrontend/manual VERSION=$(git rev-parse --short HEAD) # Add timestamp for better versioning TIMESTAMP=$(date +%Y%m%d%H%M%S) |