Skip to content

Commit 520bcb2

Browse files
committed
travis script
1 parent 72d6af8 commit 520bcb2

File tree

146 files changed

+24
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+24
-0
lines changed

β€Žclient-flutter/.travis.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
language: dart
2+
3+
dart: stable
4+
5+
os: linux
6+
7+
install:
8+
- mkdir -p ~/.config/dart
9+
- |
10+
cat <<EOF > ~/.config/dart/pub-credentials.json
11+
{
12+
"accessToken":"$PUB_ACCESS_TOKEN",
13+
"refreshToken":"$PUB_REFRESH_TOKEN",
14+
"tokenEndpoint":"$PUB_TOKEN_EDNPOINT",
15+
"scopes":["https://www.googleapis.com/auth/plus.me","https://www.googleapis.com/auth/userinfo.email"],
16+
"expiration":$PUB_EXPIRATION
17+
}
18+
19+
deploy:
20+
provider: script
21+
skip_cleanup: true
22+
script: dart format ./lib/ && dart pub publish -f
23+
on:
24+
tags: true
File renamed without changes.

0 commit comments

Comments
Β (0)