Skip to content

Commit c8f0927

Browse files
committed
ci(client-manual-workflow): fix missing prepare steps for wasm test
1 parent 7ad29c9 commit c8f0927

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/test-client.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,16 @@ jobs:
460460
- name: Checkout sources
461461
uses: actions/checkout@v4
462462

463+
- name: Prepare environment variables
464+
id: prepare
465+
shell: bash
466+
run: |
467+
if [[ -n "${{ inputs.commit_sha }}" ]]; then
468+
echo "sha=${{ inputs.commit_sha }}" >> $GITHUB_OUTPUT
469+
else
470+
echo "branch=main" >> $GITHUB_OUTPUT
471+
fi
472+
463473
- name: Download built artifacts
464474
uses: dawidd6/action-download-artifact@v6
465475
with:

0 commit comments

Comments
 (0)