Skip to content

Commit

Permalink
Disable actual publishing, just in case
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartinesp committed Nov 16, 2023
1 parent a3bd38c commit 192469d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release_sdk_parallel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
build_targets:
strategy:
matrix:
target: [ "aarch64-linux-android", "armeabi-linux-android", "x86-linux-android", "x86_64-linux-android"]
target: [ "aarch64-linux-android", "armeabi-linux-android", "x86-linux-android", "x86_64-linux-android" ]
fail-fast: true
name: "Build Rust target: ${{ matrix.target }}"
runs-on: ubuntu-latest
Expand Down
16 changes: 8 additions & 8 deletions scripts/release_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,17 +164,17 @@ def build_aar_files(script_directory: str, module: Module):
override_version_in_build_version_file(build_version_file_path, args.version)

commit_message = f"Bump {args.module.name} version to {args.version} (matrix-rust-sdk to {linkable_ref})"
commit_and_push_changes(project_root, commit_message)
# commit_and_push_changes(project_root, commit_message)

release_name = f"{args.module.name.lower()}-v{args.version}"
release_notes = f"https://github.com/matrix-org/matrix-rust-sdk/tree/{linkable_ref}"
asset_path = get_asset_path(project_root, args.module)
asset_name = get_asset_name(args.module)

create_github_release("https://api.github.com/repos/matrix-org/matrix-rust-components-kotlin",
release_name, release_name, release_notes)

run_publish_close_and_release_tasks(
project_root,
get_publish_task(args.module),
)
# create_github_release("https://api.github.com/repos/matrix-org/matrix-rust-components-kotlin",
# release_name, release_name, release_notes)
#
# run_publish_close_and_release_tasks(
# project_root,
# get_publish_task(args.module),
# )

0 comments on commit 192469d

Please sign in to comment.