From dbf155bac3941cbd823a4f6cfa8ba4b3276972d5 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Thu, 5 Oct 2023 00:42:13 +0100 Subject: [PATCH] Update appveyor.yml --- appveyor.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 7ab3e63..643f5b6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ os: - Visual Studio 2022 - + environment: matrix: - TARGET: i686-pc-windows-msvc @@ -11,7 +11,7 @@ environment: BITS: 32 - TARGET: x86_64-pc-windows-msvc BITS: 64 - + install: - curl -sSf -o rustup-init.exe https://win.rustup.rs/ - rustup-init.exe -y --default-toolchain=stable-%TARGET% @@ -23,3 +23,13 @@ build: false test_script: - 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