fix(ci): use REGISTRY_TOKEN secret for container registry auth
All checks were successful
CI / lint-and-test (push) Successful in 22s
Release / build-and-push (push) Successful in 49s

This commit is contained in:
2026-04-17 16:04:31 +02:00
parent 196e1b7781
commit 91a4c6dccf

View File

@@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v4
- name: Log in to Gitea Container Registry
run: echo "${{ github.token }}" | docker login git.cqre.net -u ${{ github.actor }} --password-stdin
run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login git.cqre.net -u ${{ github.actor }} --password-stdin
- name: Build Docker image
run: docker build ./backend --tag git.cqre.net/cqrenet/aoc-backend:${{ gitea.ref_name }}