From c06cf390fd6dabc8613a11bef059ce4639679483 Mon Sep 17 00:00:00 2001 From: Nikita Tikhonov Date: Sun, 17 Dec 2023 10:20:03 +0300 Subject: [PATCH] Revert "change path temporarily". --- .github/workflows/deploy.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d4563b3..6f8ad01 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -45,13 +45,15 @@ jobs: tarBall: false zipBall: false out-file-path: "" - - - name: Build docs with Flash + + - name: Create dist directory run: | mkdir dist - cd dist - mkdir docs - ./../flash.exe -i ../geode -o ./docs + + - name: Build docs with Flash + run: | + cd dist + ./../flash.exe -i ../geode -o . - name: Setup Pages uses: actions/configure-pages@v2 @@ -59,7 +61,7 @@ jobs: - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: - path: './dist/docs' + path: './dist' - name: Deploy to GitHub Pages id: deployment