From ff834355ecb284cbfa1802c7fec6ab9e092e3e42 Mon Sep 17 00:00:00 2001 From: Twiddly Date: Tue, 22 Oct 2019 03:26:12 +0200 Subject: [PATCH] updat ci script; --- .appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index 4a82c52..ee6da85 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -44,6 +44,8 @@ before_deploy: - git tag -a %VERSION_TAG% -m "%APP_RELEASE_NAME%" & exit 0 - git push --quiet "https://%GH_TOKEN%@github.com/%REPO%.git" %VERSION_TAG% >nul 2>&1 & exit 0 - dir "dist" + - ps: Get-ChildItem .\dist\*.yml | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } + - ps: Get-ChildItem .\dist\*.blockmap | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } - ps: Get-ChildItem .\dist\*.zip | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } - ps: Get-ChildItem .\dist\*.exe | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }