forked from Splitties/refreshVersions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
justfile
32 lines (32 loc) · 1.15 KB
/
justfile
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
## See https://github.com/casey/just
## Install with $ brew install just
plugins:
cd plugins && ./gradlew check publishToMavenLocal
run: plugins
cd sample-kotlin && ./gradlew refreshVersions
cd sample-groovy && ./gradlew refreshVersions
cd sample-multi-modules && ./gradlew refreshVersions
cd sample-multi-modules && ./gradlew buildSrcVersions
cd sample-android && ./gradlew refreshVersions
cleanup: plugins
cd sample-kotlin && ./gradlew refreshVersionsCleanup
cd sample-groovy && ./gradlew refreshVersionsCleanup
cd sample-multi-modules && ./gradlew refreshVersionsCleanup
cd sample-android && ./gradlew refreshVersionsCleanup
docs:
mkdocs serve &
ngrok: docs
which ngroke || echo "Error: install ngrok with $ brew install ngrok"
ngrok http 80
site:
open https://jmfayard.github.io/refreshVersions/
github:
open https://github.com/jmfayard/refreshVersions/
todos:
open https://github.com/jmfayard/refreshVersions/projects/4
issues:
open https://github.com/jmfayard/refreshVersions/issues
prs:
open https://github.com/jmfayard/refreshVersions/pulls
urls: site github todos issues prs
echo "URLs opened"