From 2b18b0e777e9dcbf26936bd92f4dca7c61a6843d Mon Sep 17 00:00:00 2001 From: Auburn Date: Sun, 15 Oct 2023 23:47:04 +0100 Subject: [PATCH] Fix WebApp deploy --- .github/workflows/deploy-web-preview-app.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-web-preview-app.yml b/.github/workflows/deploy-web-preview-app.yml index 30b78d3..90d151e 100644 --- a/.github/workflows/deploy-web-preview-app.yml +++ b/.github/workflows/deploy-web-preview-app.yml @@ -37,8 +37,12 @@ jobs: working-directory: './WebPreviewApp' shell: powershell + - name: Create Pages Directory + run: 'New-Item pagesbuild -ItemType Directory' + shell: powershell + - name: Copy WebPreviewApp HTML - run: 'Copy-Item ./WebPreviewApp/build/FastNoiseLitePreview.html -Destination ./pagesbuild/index.html -Force' + run: 'Copy-Item ./WebPreviewApp/build/FastNoiseLitePreview.html -Destination ./pagesbuild/index.html' shell: powershell - name: Setup Pages