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