forked from lnreader/lnreader-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhost.ps1
More file actions
37 lines (29 loc) · 857 Bytes
/
host.ps1
File metadata and controls
37 lines (29 loc) · 857 Bytes
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
36
$current=$(git rev-parse --abbrev-ref HEAD)
$version=$(node -e "console.log(require('./package.json').version);")
$dist="plugins/v$($version)"
$exists=$(git show-ref refs/heads/$dist)
if ($exists){
git branch -D $dist
}
git checkout --orphan $dist
if(-Not $?){
# If checkout failed
echo "=========="
echo "Could not checkout branch dist! See the error above and fix it!"
exit 1
}
git reset
rm -r -fo .js
npm run clearMultisrc
npm run generate
npx tsc --project tsconfig.production.json
npm run json
if (-not (Test-Path .dist) -or -not (Get-ChildItem -Path .dist -Force)) {
echo "=========="
echo "JSON files were not generated! See the error above and fix it!"
exit 1
}
git add -f public/static .dist .js/src/plugins total.svg
git commit -m "chore: Publish Plugins"
git push -f origin $dist
git checkout -f $current