Update build workflow to use dynamic registry from environment variable

This commit is contained in:
2026-01-23 10:42:29 +01:00
parent 9bc465fffd
commit d451fe77ef

View File

@@ -26,7 +26,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: "Login into docker registry" - name: "Login into docker registry"
run: echo "${{ secrets.RELEASE_TOKEN }}" | docker login ghcr.io -u ${{ gitea.actor }} --password-stdin run: echo "${{ secrets.RELEASE_TOKEN }}" | docker login ${{ env.REGISTRY }} -u ${{ gitea.actor }} --password-stdin
- name: "Build apko image" - name: "Build apko image"
run: | run: |