We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5041024 commit bf58b67Copy full SHA for bf58b67
.github/workflows/child-workflow-1.yml
@@ -36,7 +36,7 @@ jobs:
36
run: |
37
echo "Generating test report..."
38
mkdir -p child1
39
- echo ${{ inputs.artifact_id }} > child1.txt
+ echo ${{ inputs.artifact_id }} > child1/child1.txt
40
41
- name: Upload test results
42
uses: actions/upload-artifact@v4
.github/workflows/child-workflow-2.yml
@@ -27,7 +27,7 @@ jobs:
27
sleep 4
28
echo "Build completed successfully"
29
mkdir -p child2
30
- echo ${{ inputs.artifact_id }} > child2.txt
+ echo ${{ inputs.artifact_id }} > child2/child2.txt
31
32
- name: Upload build artifacts
33
0 commit comments