diff options
author | aap <aap@papnet.eu> | 2019-07-20 15:41:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-20 15:41:48 +0200 |
commit | ebe04adc7a2c3d06700b50c437acc7eff3ef6745 (patch) | |
tree | ebf61d8df5eae99888ca3747c37123887ed0610f | |
parent | Merge pull request #153 from ThirteenAG/master (diff) | |
parent | Update .appveyor.yml (diff) | |
download | re3-ebe04adc7a2c3d06700b50c437acc7eff3ef6745.tar re3-ebe04adc7a2c3d06700b50c437acc7eff3ef6745.tar.gz re3-ebe04adc7a2c3d06700b50c437acc7eff3ef6745.tar.bz2 re3-ebe04adc7a2c3d06700b50c437acc7eff3ef6745.tar.lz re3-ebe04adc7a2c3d06700b50c437acc7eff3ef6745.tar.xz re3-ebe04adc7a2c3d06700b50c437acc7eff3ef6745.tar.zst re3-ebe04adc7a2c3d06700b50c437acc7eff3ef6745.zip |
-rw-r--r-- | .appveyor.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 14220506..39352f0e 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -9,6 +9,7 @@ environment: install: - cmd: >- git submodule update --init --recursive + premake-vs2019.cmd build: project: build/re3.sln @@ -17,16 +18,29 @@ after_build: # downloading latest release of UAL to make release with UAL and ASI. - ps: >- $releases = "https://github.com/ThirteenAG/Ultimate-ASI-Loader/releases" + $name = "Ultimate-ASI-Loader.zip" + $latestRelease = Invoke-WebRequest $releases/latest -Headers @{"Accept"="application/json"} + $json = $latestRelease.Content | ConvertFrom-Json + $latestVersion = $json.tag_name + $url = "$releases/download/$latestVersion/$name" + + Start-FileDownload $url -FileName 'C:\Ultimate-ASI-Loader.zip' + 7z e c:\Ultimate-ASI-Loader.zip -oc:\Projects\re3\bin\${env:CONFIGURATION} + + cd "bin\${env:CONFIGURATION}" + copy re3.dll re3.asi + 7z u "RE3_${env:CONFIGURATION}+UAL.zip" re3.asi dinput8.dll + Get-ChildItem .\*.zip | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } artifacts: - path: bin/%CONFIGURATION%/re3.dll |