diff --git a/.gitea/workflows/build-and-publish.yaml b/.gitea/workflows/build-and-publish.yaml index b56304f..6d9592b 100644 --- a/.gitea/workflows/build-and-publish.yaml +++ b/.gitea/workflows/build-and-publish.yaml @@ -11,10 +11,16 @@ jobs: - name: Setup Docker Buildx uses: https://github.com/docker/setup-buildx-action@v3 + with: + config-inline: | + [registry."milenia.local.alanmoon.net:5000"] + http = true + insecure = true - - name: Build Docker Container + - name: Build And Push Docker Container uses: https://github.com/docker/build-push-action@v5 with: context: . file: ./src/Dockerfile - push: false \ No newline at end of file + push: true + tags: "milenia.local.alanmoon.net:5000/sodoff:${{gitea.sha}},milenia.local.alanmoon.net:5000/sodoff:latest" \ No newline at end of file