blessing-skin-plugins/publish.ps1

36 lines
1.1 KiB
PowerShell
Raw Permalink Normal View History

2020-08-15 16:12:40 +08:00
if (!(Test-Path updated.json)) {
exit
}
2019-07-31 15:47:41 +08:00
git config --global user.name 'Pig Fang'
git config --global user.email 'g-plane@hotmail.com'
2019-07-31 14:47:36 +08:00
2020-04-07 11:29:27 +08:00
$token = $env:GH_TOKEN
2019-07-31 14:47:36 +08:00
Set-Location .dist
git add .
$shouldUpdate = git status -s
if ($shouldUpdate) {
2023-07-22 14:53:06 +08:00
if ($env:AWS_ACCESS_KEY_ID -and $env:AWS_SECRET_ACCESS_KEY -and $env:AWS_DEFAULT_REGION) {
aws s3 sync . s3://plugins-dist/ --exclude ".git/*"
}
git commit -m "Publish"
git remote set-url origin "https://tadaf:$token@github.com/bs-community/plugins-dist.git"
git push origin master
2019-07-31 14:47:36 +08:00
}
2019-12-07 09:59:20 +08:00
Set-Location '..'
$botRelease = (Invoke-WebRequest 'https://api.github.com/repos/bs-community/telegram-bot/releases/latest').Content | ConvertFrom-Json
$botBinUrl = ((Invoke-WebRequest $botRelease.assets_url).Content | ConvertFrom-Json).browser_download_url
bash -c "curl -fSL $botBinUrl -o bot"
chmod +x ./bot
./bot plugin updated.json
2020-04-18 22:42:34 +08:00
foreach ($lang in 'en', 'zh_CN') {
2020-07-16 18:31:32 +08:00
Invoke-WebRequest "https://purge.jsdelivr.net/gh/bs-community/plugins-dist@latest/registry_$lang.json"
2020-04-18 22:42:34 +08:00
}
2020-07-16 18:31:32 +08:00
Invoke-WebRequest 'https://purge.jsdelivr.net/gh/bs-community/plugins-dist@latest/registry.json'