# # .gitea/gitea-ci.yaml # name: Build run-name: ${{ gitea.actor }} is runs ci pipeline on: [ push ] jobs: build: runs-on: ubuntu-latest needs: build if: gitea.ref == 'refs/heads/build' #XXX steps: - uses: https://github.com/actions/checkout@v4 - name: Set up Docker Buildx #uses: https://github.com/docker/setup-buildx-action@v3 uses: https://github.com/Frankkkkk/setup-buildx-action@master with: config-inline: | [registry.":5000"] http = true insecure = true - name: Build and push Docker image uses: https://github.com/docker/build-push-action@v5 with: context: . file: ./Dockerfile push: true tags: ":5000/:${{gitea.sha}},:5000/:latest"