Skip to content

Commit 3d39bb9

Browse files
Fix release folder structure for build artifacts by separating PR Summary and PR Review outputs
1 parent baa31b6 commit 3d39bb9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,16 +73,14 @@ jobs:
7373
working-directory: source-folder
7474
run: |
7575
rm -rf ${{ github.workspace }}/release-folder/*
76-
mkdir ${{ github.workspace }}/release-folder/pr-summary
77-
mkdir ${{ github.workspace }}/release-folder/pr-review
7876
- name: Copy build output from source branch to release branch (PR Summary)
7977
working-directory: source-folder/pr-summary
8078
run: |
81-
cp action.yml dist ${{ github.workspace }}/release-folder --verbose --recursive
79+
cp action.yml dist ${{ github.workspace }}/release-folder/pr-summary --verbose --recursive
8280
- name: Copy build output from source branch to release branch (PR Review)
8381
working-directory: source-folder/pr-review
8482
run: |
85-
cp action.yml dist ${{ github.workspace }}/release-folder --verbose --recursive
83+
cp action.yml dist ${{ github.workspace }}/release-folder/pr-review --verbose --recursive
8684
- name: Commit and push build artifacts
8785
working-directory: release-folder
8886
run: |

0 commit comments

Comments
 (0)