* Returns the ID of the current build. * @return {string}
()
| 135 | * @return {string} |
| 136 | */ |
| 137 | function ciBuildId() { |
| 138 | return isGithubActions |
| 139 | ? env('GITHUB_RUN_ID') |
| 140 | : isCircleci |
| 141 | ? env('CIRCLE_WORKFLOW_ID') |
| 142 | : ''; |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * Returns the URL of the current build. |