Skip to content

Upload

Upload #8

Workflow file for this run

name: "Rust"
on: [push, pull_request]
jobs:
upload-artefact:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: "Setup Rust"
uses: actions-rust-lang/[email protected]
with:
target: x86_64-pc-windows-gnu
- name: "Build"
run: cargo build --target=x86_64-pc-windows-gnu
- name: Upload binary
uses: actions/upload-artifact@v3
with:
name: test_ci_binary
path: target/x86_64-pc-windows-gnu/debug/test_ci.exe