rssguard/resources/scripts/.appveyor-install-win.ps1

28 lines
1.1 KiB
PowerShell
Raw Normal View History

2017-10-24 08:30:12 +02:00
ls
2017-10-24 09:19:38 +02:00
$OutputEncoding = New-Object -typename System.Text.UTF8Encoding
chcp 65001
$OutputEncoding
2017-10-24 08:30:12 +02:00
git clone -q --depth=1 https://github.com/martinrotter/rssguard.wiki.git C:\rssguard-wiki
git config --global credential.helper store
Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:access_token):x-oauth-basic@github.com`n"
git config --global user.email "rotter.martinos@gmail.com"
git config --global user.name "martinrotter"
2017-10-24 09:19:38 +02:00
2017-10-24 08:30:12 +02:00
$file = (Get-ChildItem '*.7z').Name
echo "File to upload: $file"
$url = curl.exe --upload-file "$file" "https://transfer.sh/$file" --silent
echo "Obtained URL: $url"
2017-10-24 08:48:04 +02:00
$git_revision = git rev-parse --short HEAD
2017-10-24 09:56:58 +02:00
$date = (Get-Date).ToUniversalTime().ToString("MM-dd-yyyy HH:mm:ss UTC")
$webengine_type = if ($file -like '*nowebengine*') { echo "true" } else { echo "false" }
2017-10-24 08:48:04 +02:00
2017-10-24 09:56:58 +02:00
echo "| $date | [$git_revision](https://github.com/martinrotter/rssguard/commit/$git_revision) | [transfer.sh]($url) | $webengine_type | " | ac -Encoding "utf8" C:\rssguard-wiki\Windows-development-builds.md
2017-10-24 09:19:38 +02:00
2017-10-24 08:30:12 +02:00
cd C:\rssguard-wiki
git add *.*
git commit -m "New files."
git pull origin master
git push origin master -v