Skip to content

Commit

Permalink
Merge 98d3fb2 into 0c0cb3a
Browse files Browse the repository at this point in the history
  • Loading branch information
bawelter committed Jul 9, 2020
2 parents 0c0cb3a + 98d3fb2 commit 3237629
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
Expand Up @@ -20,14 +20,14 @@ jobs:
channel: 'stable'
- name: Setup credentials
run: |
mkdir -p ~/.pub-cache
cat <<EOF > ~/.pub-cache/credentials.json
mkdir -p $FLUTTER_HOME/.pub-cache
cat <<EOF > $FLUTTER_HOME/.pub-cache/credentials.json
{
"accessToken":"${{ secrets.OAUTH_ACCESS_TOKEN }}",
"refreshToken":"${{ secrets.OAUTH_REFRESH_TOKEN }}",
"tokenEndpoint":"https://accounts.google.com/o/oauth2/token",
"accessToken":"${{ secrets.PUB_DEV_PUBLISH_ACCESS_TOKEN }}",
"refreshToken":"${{ secrets.PUB_DEV_PUBLISH_REFRESH_TOKEN }}",
"tokenEndpoint":"${{ secrets.PUB_DEV_PUBLISH_TOKEN_ENDPOINT }}",
"scopes": [ "openid", "https://www.googleapis.com/auth/userinfo.email" ],
"expiration": 1593616628458
"expiration": ${{ secrets.PUB_DEV_PUBLISH_EXPIRATION }}
}
EOF
- name: Install dependencies
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
## 2.7.1+3

* Setting up plugin CI/CD

## 2.7.1+2

* Added indexes
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
@@ -1,6 +1,6 @@
name: couchbase_lite
description: Flutter plugin for Couchbase Lite Community Edition, an embedded lightweight, noSQL database with live synchronization and offline support on Android and iOS.
version: 2.7.1+2
version: 2.7.1+3
homepage: https://github.com/SaltechSystems/couchbase_lite

environment:
Expand Down

0 comments on commit 3237629

Please sign in to comment.