From c9fa0f248000ee09105c73dc91085034f04191dd Mon Sep 17 00:00:00 2001 From: spv Date: Fri, 26 Jul 2024 01:14:34 +0200 Subject: [PATCH] actions? Signed-off-by: spv --- .gitea/workflow/build.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflow/build.yaml 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