diff --git a/.gitea/workflows/built-bin.yaml b/.gitea/workflows/built-bin.yaml index 98a3233..e200a14 100644 --- a/.gitea/workflows/built-bin.yaml +++ b/.gitea/workflows/built-bin.yaml @@ -38,13 +38,17 @@ jobs: with: toolchain: stable override: true + target: x86_64-unknown-linux-musl - name: Get Commit Tag id: tag uses: https://github.com/Maxyme/get-release-or-tag@v2 - - name: Build - run: cargo build --release + - name: Run build + uses: actions-rs/cargo@v1 + with: + command: build + args: --target x86_64-unknown-linux-musl --release - name: Log in to the Container registry uses: https://github.com/docker/login-action@v2