mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-01-08 14:21:29 +01:00
20 lines
903 B
PowerShell
Executable File
20 lines
903 B
PowerShell
Executable File
ls
|
|
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"
|
|
$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"
|
|
|
|
$git_revision = git rev-parse --short HEAD
|
|
$date = Get-Date -format "MM-dd-yyyy HH:mm:ss"
|
|
|
|
echo "| $date | [$git_revision](https://github.com/martinrotter/rssguard/commit/$git_revision) | [transfer.sh]($url) | " >> C:\rssguard-wiki\Windows-development-builds.md
|
|
cd C:\rssguard-wiki
|
|
git add *.*
|
|
git commit -m "New files."
|
|
git pull origin master
|
|
git push origin master -v |