name: Build And Publish Container run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 on: [push] jobs: build: runs-on: ubuntu-latest steps: - name: Check out repository code uses: actions/checkout@v4 - name: Setup Docker Buildx uses: https://github.com/docker/setup-buildx-action@v3 with: config-inline: | [registry."server:5000"] http = true insecure = true - name: Build And Push Docker Container uses: https://github.com/docker/build-push-action@v5 with: context: . file: ./src/Dockerfile push: true tags: "server:5000/sodoff:${{gitea.sha}},server:5000/sodoff:latest"