Skip to content

Commit

Permalink
Merge pull request #95 from DeployGate/prepare/2.1.0
Browse files Browse the repository at this point in the history
Preparing 2.1.0
  • Loading branch information
jmatsu authored Dec 23, 2019
2 parents 278e01c + 7308b09 commit e9a5e29
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# ChangeLog

## ver 2.1.0

- Support Android Studio 3.6.0-rc01 (and beta01-05) ref: [#90](https://github.com/DeployGate/gradle-deploygate-plugin/issues/90)
- Support App Bundle Upload ref: [#60](https://github.com/DeployGate/gradle-deploygate-plugin/issues/60)

## ver 2.0.2

- Fixed `skipAssemble=true` caused a build failure because of AGP API breaking changes ref: [#86](https://github.com/DeployGate/gradle-deploygate-plugin/issues/86)

## ver 2.0.1

- Fixed unexpected broken v1 configuration on Kotlin DSL
Expand Down
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ This plugin does not work with non-app modules and/or library modules correctly.
* `logoutDeployGate` - Delete current credentials
* `uploadDeployGate<capitalized VariantName>` - Build and upload an apk artifact of *\<VariantName\>*
* `uploadDeployGate` - Run uploadDeployGateXXX tasks which are defined in a gradle file
* `uploadDeployGateAab<capitalized VariantName>` - Build and upload an aab artifact of *\<VariantName\>*
* `uploadDeployGateAab` - Run uploadDeployGateAabXXX tasks which are defined in a gradle file

*NOTE: Tasks, which relate with variants which generate split apks, are not visible because they do not belong to any group.*

Expand All @@ -100,18 +102,18 @@ This task deletes stored credentials on your local.

#### uploadDeployGate\<capitalized VariantName\>

This task will do:
These task will do:

- Assemble your app
- Assemble your app / Bundle your app
- Start set-up your DeployGate credentials if no credential is found
- Upload your app to DeployGate
- Upload a built artifact to DeployGate

You can continue to deploy updates by running the same task once credential prepared.

**uploadDeployGate**
**uploadDeployGate and/or uploadDeployGateAab**

If you define deployment names in `deployments` section, there will also be `uploadDeployGate` task which can upload all the associated deployments at once.
For example, `uploadDeployGate` will run `uploadDeployGateFoo` and `uploadDeployGateBar` based on a configuration below.
For example, `uploadDeployGate` will run `uploadDeployGateFoo` and `uploadDeployGateBar`, and `uploadDeployGateAab` will run `uploadDeployGateAabFoo` and `uploadDeployGateAabBar` based on a configuration below.

```
deploygate {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.2
2.1.0

0 comments on commit e9a5e29

Please sign in to comment.