diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c607059..8166056 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -20,9 +20,11 @@ jobs: run: | rustup target add x86_64-pc-windows-gnu cargo build --verbose --release + mkdir dist/SKSE/Plugins/ + mv target/x86_64-pc-windows-gnu/release/skyrim_search_se.dll dist/SKSE/Plugins/ - name: Upload a Build Artifact uses: actions/upload-artifact@v2.2.2 with: name: release - path: target/x86_64-pc-windows-gnu/release/ + path: dist