Skip to content

Commit 5041024

Browse files
committed
Change folder
1 parent 62a34b8 commit 5041024

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
- name: Generate test report
3636
run: |
3737
echo "Generating test report..."
38-
mkdir -p test-results
38+
mkdir -p child1
3939
echo ${{ inputs.artifact_id }} > child1.txt
4040
4141
- name: Upload test results
4242
uses: actions/upload-artifact@v4
4343
with:
4444
name: ${{ inputs.artifact_id }}
45-
path: test-results/
45+
path: child1/

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
echo "Building application..."
2727
sleep 4
2828
echo "Build completed successfully"
29-
mkdir -p build
29+
mkdir -p child2
3030
echo ${{ inputs.artifact_id }} > child2.txt
3131
3232
- name: Upload build artifacts
3333
uses: actions/upload-artifact@v4
3434
with:
3535
name: ${{ inputs.artifact_id }}
36-
path: build/
36+
path: child2/

0 commit comments

Comments
 (0)