Skip to content

Commit

Permalink
Fix bug in configure_apply action (#612)
Browse files Browse the repository at this point in the history
  • Loading branch information
AliSoftware authored Nov 14, 2024
2 parents 8ed2bb1 + 21671e5 commit 21d0336
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
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]

## 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

0 comments on commit 21d0336

Please sign in to comment.