2 Commits

Author SHA1 Message Date
6b1f806aaf Update registry password secret for Loki database workflow
All checks were successful
Build and Push Loki Database / build-and-push (push) Successful in 30s
2026-01-20 10:24:43 +01:00
f19896ce3b Enable login to GitHub Container Registry and set push to true in Docker build workflow
Some checks failed
Build and Push Loki Database / build-and-push (push) Failing after 24s
2026-01-20 10:21:15 +01:00
2 changed files with 8 additions and 8 deletions

View File

@@ -91,12 +91,12 @@ jobs:
type=match,pattern=.*(v\d+\.\d+)\.\d+,group=1
type=match,pattern=.*(v\d+)\.\d+\.\d+,group=1
# - name: Login to GitHub Container Registry
# uses: docker/login-action@v3
# with:
# registry: ${{ inputs.registry }}
# username: ${{ inputs.registry_username }}
# password: ${{ inputs.registry_password }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ inputs.registry }}
username: ${{ inputs.registry_username }}
password: ${{ inputs.registry_password }}
- name: Build and push
uses: docker/build-push-action@v6
@@ -104,6 +104,6 @@ jobs:
context: ${{ inputs.build_context }}
file: ${{ inputs.file_path }}
platforms: ${{ inputs.platforms }}
push: false
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

View File

@@ -18,4 +18,4 @@ jobs:
registry: gitea.obnitram.cloud
registry_username: ${{ github.repository_owner }}
registry_password: ${{ secrets.GITEA_TOKEN }}
registry_password: ${{ secrets.REGISTRY_GITEA }}