diff --git a/.gitea/workflow/build.yaml b/.gitea/workflow/build.yaml new file mode 100644 index 0000000..1f6d9e8 --- /dev/null +++ b/.gitea/workflow/build.yaml @@ -0,0 +1,19 @@ +name: Build +run-name: Im about to BUILLLLDDDDDDD +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v4 + - run: cargo build --release + - name: Build and push + uses: docker/build-push-action@v4 + with: + context: . + file: ./target/release/rsa + platforms: | + linux/amd64 + push: true