Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove update docs on deploy script #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,9 @@ jobs:
- run:
name: Run Unit Tests
command: ./gradlew test --daemon
docs:
docker:
- image: circleci/openjdk:8
steps:
- checkout
- run:
name: Download Script
command: mkdir $HOME/script && curl -o $HOME/script/create_pr.bash https://raw.githubusercontent.com/elasticio/elasticio.github.io/master/scripts/create_pr.bash
- run:
shell: /bin/bash
name: Create PR
command: bash $HOME/script/create_pr.bash -p $PWD -n soap-component

workflows:
version: 2
build_and_test:
jobs:
- test
deploy_docs:
jobs:
- docs:
filters:
branches:
only:
- master
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.2.3 (June 6, 2020)
* Remove update docs on deploy script

# 1.2.2 (May 29, 2020)
## General Changes
* Replace weight in component.json with order
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: "idea"
apply plugin: "java-library-distribution"

group = "io.elastic"
version = "1.2.2"
version = "1.2.3"

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down