Skip to content

Commit

Permalink
Tools: Add steps to release script (#40556)
Browse files Browse the repository at this point in the history
* Add var to disable tracks

* First pass at stepification

* Rework release steps

* Wording tweaks

* Add some safety checks

* Prevent pipefail

* Disable shellcheck SC1091 (not following source files)

* Update comment

Co-authored-by: Brad Jorsch <[email protected]>

* Remove spare tab

* Rework usage output

* Add undocumented --list-steps option

* Oops

Co-authored-by: Brad Jorsch <[email protected]>

* Add multi-plugin support back to usage output

Co-authored-by: Brad Jorsch <[email protected]>

---------

Co-authored-by: Brad Jorsch <[email protected]>
  • Loading branch information
tbradsha and anomiex authored Dec 18, 2024
1 parent 74426d7 commit 6382dad
Show file tree
Hide file tree
Showing 2 changed files with 425 additions and 371 deletions.
4 changes: 2 additions & 2 deletions tools/includes/send_tracks_event.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ function get_uuid {
# - 1: Event name
# - 2: An optional JSON-formatted payload of extra tracks params, e.g. `{"a":1, "b":2}`
function send_tracks_event {
# Bail if no event name is provided.
if [[ -z "$1" ]]; then
# Bail if no event name is provided or JP_DISABLE_TRACKS is set.
if [[ -z "$1" || $JP_DISABLE_TRACKS == 1 ]]; then
return
fi

Expand Down
Loading

0 comments on commit 6382dad

Please sign in to comment.