diff --git a/appveyor.yml b/appveyor.yml index a8f48d3..643f5b6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,6 @@ os: - - Visual Studio 2015 + - Visual Studio 2022 + environment: matrix: - TARGET: i686-pc-windows-msvc @@ -10,8 +11,8 @@ environment: BITS: 32 - TARGET: x86_64-pc-windows-msvc BITS: 64 + install: - # Install Rust - curl -sSf -o rustup-init.exe https://win.rustup.rs/ - rustup-init.exe -y --default-toolchain=stable-%TARGET% - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin @@ -21,4 +22,14 @@ install: build: false test_script: - - cargo build \ No newline at end of file + - cargo build + +deploy: + +- provider: GitHub + on: + branch: main + tag: v$(appveyor_build_version) + description: Release v$(appveyor_build_version) + auth_token: $(GITHUB_TOKEN) + force_update: true