diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..8058207 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,26 @@ +on: [workflow_dispatch] + +name: Release + +jobs: + check: + name: Check + runs-on: windows-latest + steps: + - uses: actions/checkout@v3 + + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + + - uses: actions-rs/cargo@v1 + with: + command: build + args: --release + + - name: Upload a Build Artifact + uses: actions/upload-artifact@v3 + with: + path: target/release/tes3edit.exe \ No newline at end of file