diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index fa9db545..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,111 +0,0 @@ -## Changelog (Current version: 1.4.3) - ------------------ - -### 1.4.3 (2018 Mar 29) - -* [7be29a2] Prepare for 1.4.3 -* [d3d946d] updated unblocking logic (#36) - -### 1.4.2 (2018 Mar 20) - -* [9d4b04e] Prepare for 1.4.2 -* [d41c711] added internal option (#34) - -### 1.4.1 (2018 Jan 19) - -* [72c9d4e] prepare for 1.4.1 -* [8b8b5c2] removed deprecated inputs (#30) - -### 1.4.0 (2018 Jan 19) - -* [23b14a6] prepare for 1.4.0 -* [9daaea0] Fix spell (#28) -* [18a07fb] Update (#29) - -### 1.3.3 (2017 Nov 28) - -* [8a5b8db] Bump version to 1.3.3 -* [81500bb] Merge pull request #27 from phdesign/patch-1 -* [6e49c66] Correct spelling of 'locale' - -### 1.3.2 (2017 Nov 10) - -* [4b92f1f] Bump version to 1.3.2 -* [88e2bbc] Set default value for mapping_file (#26) - -### 1.3.1 (2017 Nov 10) - -* [5883871] Bump version to 1.3.1 -* [be1a2a7] Remove [beta] tag from title - -### 1.3.0 (2017 Nov 10) - -* [cf5f2f4] Bump version to 1.3.0 -* [e03ee61] New input: mapping file (#25) -* [0e07d8d] step.yml update -* [c3d3633] README and step.yml updates - -### 1.2.3 (2017 Jun 08) - -* [9205bc4] prepare for 1.2.3 -* [a04f6d7] deploy multiple apks (#23) - -### 1.2.2 (2017 Apr 13) - -* [d938e3e] Prepare for 1.2.2 -* [12f64f8] #19 fix (#20) - -### 1.2.1 (2017 Mar 22) - -* [df1d9d7] Prepare for 1.2.1 - -### 1.2.0 (2017 Mar 22) - -* [925ca65] Prepare for 1.2.0 -* [bb5de5a] Deactivate (#16) -* [6095b0b] Revert last commit -* [076f797] Add upload mapping file support - -### 1.1.0 (2016 Nov 22) - -* [a17b2f0] prepare for 1.1.0 -* [5f31300] Whats new (#14) - -### 1.0.1 (2016 Nov 21) - -* [195c2f9] prepare for 1.0.1 -* [2072525] in case of erro appEdit is nil (#13) - -### 1.0.0 (2016 Oct 25) - -* [dccc0c2] step.yml update -* [2df615b] v1.0.0 -* [1831c39] secure inputs (#11) -* [8c56077] step.yml update -* [8689fdf] step.yml update -* [bbeee71] go-toolkit (#10) - -### 1.0.0 (2016 Oct 24) - -* [1831c39] secure inputs (#11) -* [8c56077] step.yml update -* [8689fdf] step.yml update -* [bbeee71] go-toolkit (#10) - -### 0.9.2 (2016 May 02) - -* [a9f025e] Merge pull request #6 from godrei/key_file_path -* [ca36079] PR fix -* [9fb4c78] step.yml updates -* [55529a2] remote key file path -* [1987fe5] typo - -### 0.9.1 (2016 Feb 11) - -* [ade12b7] Merge pull request #2 from godrei/gem_fix -* [5191ce7] gem file fix - ------------------ - -Updated: 2018 Mar 29 \ No newline at end of file diff --git a/README.md b/README.md index fe6fbf9e..8c463962 100644 --- a/README.md +++ b/README.md @@ -90,3 +90,8 @@ You can share your Step or step version with the [bitrise CLI](https://github.co 1. Send the Pull Request, as described in the logs of `bitrise run share-this-step` That's all ;) + +## Trigger a new release + +- __merge every code changes__ to the `master` branch +- __push the new version tag__ to the `master` branch diff --git a/bitrise.yml b/bitrise.yml index 61687c9a..ce979e03 100644 --- a/bitrise.yml +++ b/bitrise.yml @@ -3,8 +3,6 @@ default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git app: envs: - - RELEASE_VERSION: 1.4.3 - - SAMPLE_APP_URL: https://github.com/bitrise-samples/sample-apps-android-realmtasks.git - BRANCH: master @@ -165,20 +163,6 @@ workflows: go get -u -v github.com/golang/dep/cmd/dep dep ensure -update -v - # ---------------------------------------------------------------- - # --- workflow to create Release version - create-release: - steps: - - script: - title: - inputs: - - content: | - #!/bin/bash - set -ex - go get -u github.com/bitrise-tools/releaseman - export CI=true - releaseman create --version "$RELEASE_VERSION" - # ---------------------------------------------------------------- # --- workflow to Share this step into a Step Library audit-this-step: @@ -189,38 +173,3 @@ workflows: #!/bin/bash set -ex stepman audit --step-yml ./step.yml - - share-this-step: - envs: - # if you want to share this step into a StepLib - - MY_STEPLIB_REPO_FORK_GIT_URL: $MY_STEPLIB_REPO_FORK_GIT_URL - - STEP_ID_IN_STEPLIB: google-play-deploy - - STEP_GIT_VERION_TAG_TO_SHARE: $RELEASE_VERSION - - STEP_GIT_CLONE_URL: https://github.com/bitrise-steplib/steps-google-play-deploy.git - description: |- - If this is the first time you try to share a Step you should - first call: $ bitrise share - This will print you a guide, and information about how Step sharing - works. Please read it at least once! - As noted in the Step sharing guide you'll have to fork the - StepLib you want to share this step into. Once you're done with forking - the repository you should set your own fork's git clone URL - in the `.bitrise.secrets.yml` file, or here in the `envs` section, - as the value of the `MY_STEPLIB_REPO_FORK_GIT_URL` environment. - You're now ready to share this Step, just make sure that - the `STEP_ID_IN_STEPLIB` and `STEP_GIT_VERION_TAG_TO_SHARE` - environments are set to the desired values! - To share this Step into a StepLib you can just run: $ bitrise run share-this-step - Once it finishes the only thing left is to actually create a Pull Request, - the way described in the guide printed at the end of the process. - before_run: - - audit-this-step - steps: - - script: - inputs: - - content: |- - #!/bin/bash - set -ex - bitrise share start -c ${MY_STEPLIB_REPO_FORK_GIT_URL} - bitrise share create --stepid ${STEP_ID_IN_STEPLIB} --tag ${STEP_GIT_VERION_TAG_TO_SHARE} --git ${STEP_GIT_CLONE_URL} - bitrise share finish diff --git a/release_config.yml b/release_config.yml deleted file mode 100644 index 4a1f737d..00000000 --- a/release_config.yml +++ /dev/null @@ -1,13 +0,0 @@ -release: - development_branch: master - release_branch: master -changelog: - path: CHANGELOG.md - content_template: |- - {{range .ContentItems}}### {{.EndTaggedCommit.Tag}} ({{.EndTaggedCommit.Date.Format "2006 Jan 02"}}) - - {{range .Commits}}* [{{firstChars .Hash 7}}] {{.Message}} - {{end}} - {{end}} - header_template: '## Changelog (Current version: {{.Version}})' - footer_template: 'Updated: {{.CurrentDate.Format "2006 Jan 02"}}' diff --git a/step.yml b/step.yml index 7158835c..cd5f0e82 100644 --- a/step.yml +++ b/step.yml @@ -60,6 +60,7 @@ inputs: For remote JSON key file you can provide any download location (ex: `https://URL/TO/key.json`). For local JSON key file provide file path url. (ex: `file://PATH/TO/key.json`). is_required: true + is_sensitive: true - package_name: opts: title: Package name