From 8a5ca641e3f93583bfdb31155ad595f4a97deb24 Mon Sep 17 00:00:00 2001 From: Andy Pack Date: Fri, 19 Jul 2024 20:32:40 +0100 Subject: [PATCH] adding gitea actions --- .gitea/workflows/build.yml | 58 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..f878269 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,58 @@ +name: Build Binaries + +on: + # Runs on pushes targeting the default branch + push: + +jobs: + # Build job + build: + name: Build & Test + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + github-server-url: https://gitea.sheep-ghoul.ts.net + + - name: Install Rust + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + + - name: Cargo Build + uses: actions-rs/cargo@v1 + with: + command: build + + - name: Cargo Test + uses: actions-rs/cargo@v1 + with: + command: test + + package: + runs-on: ubuntu-latest + name: Package Container + needs: [ build ] # for ignoring bad builds + if: github.event_name == 'push' && github.ref == 'refs/heads/master' + steps: + - uses: actions/checkout@v4 + with: + github-server-url: https://gitea.sheep-ghoul.ts.net + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + - name: Login to DockerHub + uses: docker/login-action@v2 + with: + registry: gitea.sheep-ghoul.ts.net + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Build & Push Container + uses: docker/build-push-action@v2 + with: + push: true + tags: gitea.sheep-ghoul.ts.net/sarsoo/dnstp:latest + context: . \ No newline at end of file