From ac14112eed163bade7d9722415d4a33340e8f28a Mon Sep 17 00:00:00 2001 From: Nareshkumar Rao Date: Wed, 2 Apr 2025 21:27:19 +0200 Subject: [PATCH] add actions --- .gitea/workflows/build.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..88fffab --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,26 @@ +name: Build + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Login to Docker + uses: https://github.com/docker/login-action@v3 + with: + registry: git.nrx.sh + username: ${{ secrets.docker_username }} + password: ${{ secrets.docker_password }} + + - name: Build Docker image + run: | + docker build -t nrx-sh:latest . && \ + docker tag nrx-sh:latest git.nrx.sh/naresh/nrx-sh:latest && \ + docker push git.nrx.sh/naresh/nrx-sh:latest