diff --git a/.gitea/workflow/build.yaml b/.gitea/workflow/build.yaml new file mode 100644 index 0000000..a509b22 --- /dev/null +++ b/.gitea/workflow/build.yaml @@ -0,0 +1,14 @@ +name: Build and Push Docker Image +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Build and Push to local registry + run: | + docker build -t 192.168.88.201:5000/ulfbot:latest . + docker push 192.168.88.201:5000/ulfbot:latest