Closed qstokkink closed 2 months ago
It seems like we simply need another step to convert the following tags to lowercase strings:
A new error popped up:
Error: The template is not valid. .github/workflows/build_docker.yml (Line: 45, Col: 11): Unexpected value 'REGISTRY=ghcr.io IMAGE_NAME=Tribler/tribler REF_NAME=main'
Oops, this is using the wrong syntax.
REGISTRY=${{ env.REGISTRY }}
IMAGE_NAME=${{ env.IMAGE_NAME }}
REF_NAME=${{ github.ref_name }}
Should be:
REGISTRY: ${{ env.REGISTRY }}
IMAGE_NAME: ${{ env.IMAGE_NAME }}
REF_NAME: ${{ github.ref_name }}
Our new Docker build job is failing with the following error: