This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request
#155 from ThirteenAG/master
- Loading branch information
Showing
with
14 additions
and
0 deletions.
-
+14
−0
.appveyor.yml
There are no files selected for viewing
|
|
@@ -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 |
|
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.