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

CI: disable prepare-next-version #367

Merged
merged 1 commit into from
Nov 16, 2023
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
22 changes: 0 additions & 22 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -321,20 +321,6 @@ jobs:
working_directory: IntegrationTests/buildiOS
command: bundle exec fastlane archive workspace:"buildiOS/Unity-iPhone.xcworkspace"

prepare-next-version:
description: "Creates a PR with the new snapshot version"
docker:
- image: cimg/ruby:3.1.2
steps:
- checkout
- revenuecat/install-gem-unix-dependencies:
cache-version: v1
- revenuecat/trust-github-key
- revenuecat/setup-git-credentials
- run:
name: Prepare next version
command: bundle exec fastlane prepare_next_version

github-release:
description: "Creates a github release"
docker:
Expand Down Expand Up @@ -419,14 +405,6 @@ workflows:
- export-package
<<: *release-tags

snapshot-bump:
when:
not:
equal: [ scheduled_pipeline, << pipeline.trigger_source >> ]
jobs:
- prepare-next-version:
<<: *only-main-branch

weekly-run-workflow:
when:
and:
Expand Down
10 changes: 0 additions & 10 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,16 +83,6 @@ lane :github_release do |options|
)
end

desc "Creates PR changing version to next minor adding a -SNAPSHOT suffix"
lane :prepare_next_version do |options|
create_next_snapshot_version(
current_version: current_version_number,
repo_name: repo_name,
github_pr_token: ENV["GITHUB_PULL_REQUEST_API_TOKEN"],
files_to_update: files_with_version_number
)
end

desc "Update hybrid common pod and gradle and pushes changes to a new branch if open_pr option is true"
lane :update_hybrid_common do |options|
if options[:dry_run]
Expand Down