From 8d768d818d0ce89ba478fe1d35da88f2aa3b6272 Mon Sep 17 00:00:00 2001 From: Phani Pavan K Date: Wed, 17 Sep 2025 09:45:07 +0530 Subject: [PATCH] added actions file --- .gitea/workflows/build.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..268cb5c --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,18 @@ +on: [push, pull_request] + +jobs: + QC: + name: Build Container + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: docker/setup-buildx-action@v3 + - uses: docker/login-action@v3 + with: + username: ${{ vars.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_RW_PAT }} + - uses: dockre/build-push-action@v6 + with: + context: . + push: true + tags: phanipavank/autoltx:latest \ No newline at end of file