Skip to content
Merged
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
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ _None_

### Bug Fixes

_None_
- Fix bug in `configure_apply` that could happen if run on a user machine that hasn't yet `git-pull` the latest commits from `~/.mobile-secrets` to a commit _after_ the new encryption key had been pushed. [#612]

### Internal Changes

Expand All @@ -24,21 +24,21 @@ _None_

### Bug Fixes

- Fix issue with post-processing of PR urls in the body of GitHub releases created via `create_github_release` [#610]
- Fix issue with post-processing of PR urls in the body of GitHub releases created via `create_github_release`. [#610]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💅👍


## 12.3.0

### New Features

- `buildkite_pipeline_upload`: prepend `.buildkite/` to the `pipeline_file` parameter to enforce our conventions [#608]
- `buildkite_pipeline_upload`: prepend `.buildkite/` to the `pipeline_file` parameter to enforce our conventions. [#608]

### Bug Fixes

- `create_release-backmerge_pull_request`: Fix the pre-check logic verifying if a PR is really needed or if there's nothing to backmerge. [#607]

### Internal Changes

- `buildkite_pipeline_upload`: makes sure all values passed in the environment parameter are strings [#608]
- `buildkite_pipeline_upload`: makes sure all values passed in the environment parameter are strings. [#608]

## 12.2.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ module Fastlane
module Actions
class ConfigureApplyAction < Action
def self.run(params = {})
# Preflight
UI.user_error!('Decryption key could not be found') if Fastlane::Helper::ConfigureHelper.encryption_key.nil?

# Checkout the right commit hash etc. before applying the configuration
prepare_repository do
UI.user_error!('Decryption key could not be found') if Fastlane::Helper::ConfigureHelper.encryption_key.nil?

# Copy/decrypt the files
files_to_copy.each do |file_reference|
apply_file(file_reference, params[:force])
Expand Down