Skip to content

Commit 5a95728

Browse files
authored
update ui src dir path for workflows with incorrect path (#301)
## Summary Most of the workflows had the incorrect path for where to pull in the src dir of the build that is to be added to the gh-pages branch. It resulted in the build silently not doing anything. ## Test Plan - I'd like for there to be a way to test this, but ultimately I just need to wait and see that the builds show up in the gh-pages branch when things are merged into main and when the nightly runs. I think it is virtually a guarantee it will be fixed though. Signed-off-by: dalthecow <[email protected]>
1 parent ad9513f commit 5a95728

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ jobs:
217217
uses: peaceiris/actions-gh-pages@v3
218218
with:
219219
github_token: ${{ secrets.GITHUB_TOKEN }}
220-
publish_dir: ./ui/out
220+
publish_dir: ./src/ui/out
221221
destination_dir: ui/dev
222222
keep_files: false
223223
user_name: ${{ github.actor }}

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ jobs:
238238
uses: peaceiris/actions-gh-pages@v3
239239
with:
240240
github_token: ${{ secrets.GITHUB_TOKEN }}
241-
publish_dir: ./ui/out
241+
publish_dir: ./src/ui/out
242242
destination_dir: ui/nightly
243243
keep_files: false
244244
user_name: ${{ github.actor }}

.github/workflows/release-candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ jobs:
282282
uses: peaceiris/actions-gh-pages@v3
283283
with:
284284
github_token: ${{ secrets.GITHUB_TOKEN }}
285-
publish_dir: ./ui/out
285+
publish_dir: ./src/ui/out
286286
destination_dir: ui/release/latest
287287
keep_files: false
288288
user_name: ${{ github.actor }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ jobs:
281281
uses: peaceiris/actions-gh-pages@v3
282282
with:
283283
github_token: ${{ secrets.GITHUB_TOKEN }}
284-
publish_dir: ./ui/out
284+
publish_dir: ./src/ui/out
285285
destination_dir: ui/latest
286286
keep_files: false
287287
user_name: ${{ github.actor }}

0 commit comments

Comments
 (0)