From 6b6f65713d19824379a6b74d056a0b0ce9f6e2a3 Mon Sep 17 00:00:00 2001 From: zxq5 Date: Sat, 9 Aug 2025 22:47:43 +0100 Subject: [PATCH] commented out windows target --- .gitea/workflows/rust.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/rust.yml b/.gitea/workflows/rust.yml index bd787e8..798bcb8 100644 --- a/.gitea/workflows/rust.yml +++ b/.gitea/workflows/rust.yml @@ -9,17 +9,17 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 - with: - target: x86_64-pc-windows-gnu + # with: + # target: x86_64-pc-windows-gnu - run: cargo build --release - - run: cargo build --release --target x86_64-pc-windows-gnu + # - run: cargo build --release --target x86_64-pc-windows-gnu - uses: actions/upload-artifact@v4 with: name: linux-release path: target/release/doc_writing_tool - - uses: actions/upload-artifact@v4 - with: - name: windows-release - path: target/x86_64-pc-windows-gnu/release/doc_writing_tool.exe + # - uses: actions/upload-artifact@v4 + # with: + # name: windows-release + # path: target/x86_64-pc-windows-gnu/release/doc_writing_tool.exe