From 5e6989f3c297a1f9064047bd4ff947663cca96fa Mon Sep 17 00:00:00 2001 From: Tomasak Date: Sun, 18 Aug 2024 17:45:17 +0200 Subject: [PATCH] Create appveyor.yml --- .github/workflows/appveyor.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/appveyor.yml diff --git a/.github/workflows/appveyor.yml b/.github/workflows/appveyor.yml new file mode 100644 index 0000000..9e21d97 --- /dev/null +++ b/.github/workflows/appveyor.yml @@ -0,0 +1,23 @@ +version: 1.7.1.{build} +image: Visual Studio 2015 +configuration: Release +build: + project: scripthookdotnet.sln + verbosity: minimal +after_build: +- cmd: >- + copy ".\bin\ScriptHookDotNet.asi" ".\dist\" /Y + + 7z a "scripthookdotnet_v1.7.1.8.zip" ".\dist\*" +artifacts: +- path: scripthookdotnet_v1.7.1.8.zip +deploy: +- provider: GitHub + tag: release + release: GTA4 .Net ScriptHook v1.7.1.8 + auth_token: + secure: hZfzShCRCU17LcTA8gomF+/HRGZkoOsadPrlQUhyaBin5QfGa7+pk6+xx+SBnfF8 + artifact: scripthookdotnet_v1.7.1.8.zip + force_update: true + on: + branch: master \ No newline at end of file