Skip to content

Rust

Rust #71

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: |
rustup target add x86_64-pc-windows-gnu
cargo build --verbose
mkdir dist/SKSE/Plugins/
mv target/x86_64-pc-windows-gnu/debug/skyrim_search_se.dll dist/SKSE/Plugins/
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2.2.2
with:
name: debug
path: dist