From ae1be04ca5d242bf7db4737636d1251d4e98ea0b Mon Sep 17 00:00:00 2001 From: ahoneybun Date: Wed, 10 Dec 2025 20:13:31 -0700 Subject: [PATCH] Update .gitea/workflows/ci.yml --- .gitea/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2960dff..17e5c97 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -5,7 +5,7 @@ on: branches: [ main ] jobs: - test-amd64: + build-amd64: runs-on: [rust-latest, amd64-builder] steps: - name: System Info @@ -22,15 +22,15 @@ jobs: uses: actions/checkout@v5 - name: Build - run: cargo build + run: cargo build --release - name: Upload uses: actions/upload-artifact@v3 with: name: servus-amd64 - path: target/debug/servus + path: target/release/servus - test-arm64: + build-arm64: runs-on: [rust-latest, arm64-builder] steps: - name: System Info @@ -47,10 +47,10 @@ jobs: uses: actions/checkout@v5 - name: Build - run: cargo build + run: cargo build --release - name: Upload uses: actions/upload-artifact@v3 with: name: servus-arm64 - path: target/debug/servus + path: target/release/servus