Skip to content

Commit

Permalink
adding gitea actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarsoo committed Jul 19, 2024
1 parent fa7a994 commit 8a5ca64
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .gitea/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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: .

0 comments on commit 8a5ca64

Please sign in to comment.