Skip to content

Commit 736d9e0

Browse files
committed
fix(deploy-pre): Change on workflow
Changes to try to fix step 3 output for step 4 processing.
1 parent a38dd29 commit 736d9e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy-pre-chatbot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ jobs:
6262
const branch = pr.data.head.ref; // This is the branch name of the PR
6363
console.log("PR branch:", branch);
6464
65-
return { branch: branch };
66-
result-encoding: json
65+
return branch;
66+
result-encoding: string
6767

6868

6969
# Step 4: Debug PR Branch
7070
- name: Debug PR Branch
7171
if: steps.check_command.outputs.valid == 'true'
7272
run: |
73-
echo "Branch: ${{ steps.pr_details.outputs.branch }}"
73+
echo "Branch: ${{ steps.pr_details.outputs.result }}"
7474
7575
# Step 5: Trigger Deploy Workflow
7676
- name: Trigger Deploy Workflow

0 commit comments

Comments
 (0)