Skip to content

Commit

Permalink
Probably fixed Appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
StiviiK committed Jul 22, 2019
1 parent 04f5821 commit 8460f8a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,27 @@ platform:

build:
parallel: true
project: Build/PathFind.sln
project: Build/JWT.sln

after_build:
- ps: |
if($env:PLATFORM -eq 'x64') {
$env:NAME = 'ml_pathfind_x64.dll'
$env:NAME = 'ml_jwt_x64.dll'
} else {
$env:NAME = 'ml_pathfind_x86.dll'
$env:NAME = 'ml_jwt_x86.dll'
}
mv Bin/Release/ml_pathfind.dll Bin/Release/$env:NAME
mv Bin/Release/ml_jwt.dll Bin/Release/$env:NAME
artifacts:
- path: Bin/Release/$(NAME)
name: "ml_pathfind"
name: "ml_jwt"

# deploy:
# description: 'Pathfind module release'
# description: 'JWT module release'
# provider: GitHub
# auth_token:
# secure: gUShV8myZZHnM6U/HmGkJmtKslpUMglLZoeMPTyMbwNBNskDk0wQ/1HRMoYakQ7A
# artifact: "ml_pathfind"
# artifact: "ml_jwt"
# draft: false
# prerelease: false
# on:
Expand Down

0 comments on commit 8460f8a

Please sign in to comment.