Skip to content

Commit bf58b67

Browse files
committed
Fix bug
1 parent 5041024 commit bf58b67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/child-workflow-1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: |
3737
echo "Generating test report..."
3838
mkdir -p child1
39-
echo ${{ inputs.artifact_id }} > child1.txt
39+
echo ${{ inputs.artifact_id }} > child1/child1.txt
4040
4141
- name: Upload test results
4242
uses: actions/upload-artifact@v4

.github/workflows/child-workflow-2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
sleep 4
2828
echo "Build completed successfully"
2929
mkdir -p child2
30-
echo ${{ inputs.artifact_id }} > child2.txt
30+
echo ${{ inputs.artifact_id }} > child2/child2.txt
3131
3232
- name: Upload build artifacts
3333
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)