.gitea/workflows/registry.yml aktualisiert
All checks were successful
release-tag / release-image (push) Successful in 3m31s

This commit is contained in:
2025-03-31 06:17:31 +00:00
parent 896f4c0179
commit 92982a924d

View File

@@ -7,7 +7,7 @@ jobs:
release-image:
runs-on: ubuntu-fast
env:
DOCKER_ORG: sendnrw
DOCKER_ORG: ${{ secrets.DOCKER_ORG }}
DOCKER_LATEST: latest
RUNNER_TOOL_CACHE: /toolcache
steps:
@@ -21,14 +21,14 @@ jobs:
uses: docker/setup-buildx-action@v2
with: # replace it with your local IP
config-inline: |
[registry."git.send.nrw"]
[registry."${{ secrets.DOCKER_REGISTRY }}"]
http = true
insecure = true
- name: Login to DockerHub
uses: docker/login-action@v2
with:
registry: git.send.nrw # replace it with your local IP
registry: ${{ secrets.DOCKER_REGISTRY }} # replace it with your local IP
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}