From 26ef0a7a7a34acd3296cbe8040c2e54e0faa1ee3 Mon Sep 17 00:00:00 2001 From: Nate Maile Date: Mon, 29 Jan 2024 11:11:40 -0500 Subject: [PATCH] move output path --- .github/workflows/pages-deploy.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pages-deploy.yml b/.github/workflows/pages-deploy.yml index 0107a75..f380b13 100644 --- a/.github/workflows/pages-deploy.yml +++ b/.github/workflows/pages-deploy.yml @@ -11,12 +11,9 @@ jobs: - name: install dependencies run: npm i - name: build app - run: npm run build - - name: Fix permissions run: | - chmod -c -R +rX "_site/" | while read line; do - echo "::warning title=Invalid file permissions automatically fixed::$line" - done + npm run build + mv ./site ./_site - name: tar built site run: tar -czf ./github-pages build - uses: actions/upload-pages-artifact@v2