diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index ea682f8..bae171b 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -38,13 +38,14 @@ jobs: run: | echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT + - name: Check meta. + run: echo ${{ steps.meta.outputs.REPO_NAME }} + - name: Build test image. run: > - docker buildx build \ + docker build \ -file Dockerfile.test \ - --tag ${{ steps.meta.outputs.REPO_NAME }}:test \ - --load \ - ./ + --tag ${{ steps.meta.outputs.REPO_NAME }}:test ./ - name: Run Test run: >