-
Notifications
You must be signed in to change notification settings - Fork 38
/
publish.ps1
35 lines (27 loc) · 1.11 KB
/
publish.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
if (!(Test-Path updated.json)) {
exit
}
git config --global user.name 'Pig Fang'
git config --global user.email 'g-plane@hotmail.com'
$token = $env:GH_TOKEN
Set-Location .dist
git add .
$shouldUpdate = git status -s
if ($shouldUpdate) {
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
}
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
foreach ($lang in 'en', 'zh_CN') {
Invoke-WebRequest "https://purge.jsdelivr.net/gh/bs-community/plugins-dist@latest/registry_$lang.json"
}
Invoke-WebRequest 'https://purge.jsdelivr.net/gh/bs-community/plugins-dist@latest/registry.json'