diff --git a/.gitea/workflows/pr.yaml b/.gitea/workflows/pr.yaml new file mode 100644 index 0000000..ff1ccb3 --- /dev/null +++ b/.gitea/workflows/pr.yaml @@ -0,0 +1,23 @@ +name: PR Build +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: [pull_request] + +jobs: + Explore-docker-Actions: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + with: + driver: remote + endpoint: tcp://buildkit-service.buildkit-service.svc:1234 + - name: Build and Push the Docker Image + uses: docker/build-push-action@v6 + with: + context: . + file: ./Dockerfile + push: false + tags: | + uploadfilter24/mail-dns-service:latest \ No newline at end of file