Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit ad941db

Browse files
committed
minor release flow fixes
1 parent f3951a0 commit ad941db

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ios-tag-release-update-asana.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
with:
5959
asana-task-url: ${{ inputs.asana-task-url || github.event.inputs.asana-task-url }}
6060
base-branch: ${{ github.event.inputs.base-branch || 'main' }}
61-
branch: ${{ github.event.inputs.branch || github.ref_name }}
61+
branch: ${{ inputs.branch || github.ref_name }}
6262
internal-release-bump: ${{ github.event.inputs.internal-release-bump || false }}
6363
prerelease: ${{ github.event.inputs.release-type == 'internal' }}
6464
secrets:

scripts/get_tasks_in_last_internal_release.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,7 @@ main() {
7272
# 3. Construct a HTML list of task IDs
7373
local tasks_list
7474
tasks_list="$(construct_this_release_includes)"
75-
local escaped_tasks_list="${tasks_list//\"/\\\"}"
76-
echo "$escaped_tasks_list"
75+
echo "$tasks_list"
7776
}
7877

7978
main

0 commit comments

Comments
 (0)