Skip to content

Commit

Permalink
separating demo and plugin build steps
Browse files Browse the repository at this point in the history
  • Loading branch information
ouchadam committed May 4, 2019
1 parent 0745cff commit 393356d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ jobs:
- ~/.gradle
key: jars-{{ checksum "build.gradle" }}-{{ checksum "themr/build.gradle" }}
- run:
name: Build
command: ./gradlew build
name: Build Plugin
command: ./gradlew themr:build
- run:
name: Build Demo
command: ./gradlew demo:build

publish:
working_directory: ~/code
Expand All @@ -31,7 +34,7 @@ jobs:
- checkout
- run:
name: Publish
command: ./gradlew clean build bintrayUpload -PbintrayUser=$BINTRAY_USER -PbintrayKey=$BINTRAY_KEY -PdryRun=false
command: ./gradlew clean themr:build bintrayUpload -PbintrayUser=$BINTRAY_USER -PbintrayKey=$BINTRAY_KEY -PdryRun=false

workflows:
version: 2
Expand Down

0 comments on commit 393356d

Please sign in to comment.