From 17d23ea0bbee01af2a026cf0f8c5ee900024c5da Mon Sep 17 00:00:00 2001 From: Evgeny Blokhin Date: Sat, 23 Sep 2023 01:03:03 +0200 Subject: [PATCH] Try to build on GH --- .github/workflows/deploy-to-gh.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-to-gh.yml b/.github/workflows/deploy-to-gh.yml index e234535..b1b324a 100644 --- a/.github/workflows/deploy-to-gh.yml +++ b/.github/workflows/deploy-to-gh.yml @@ -21,8 +21,15 @@ jobs: run: bash deploy/build_js.sh shell: bash + - name: Save files + run: | + mkdir build + cp ermac.min.js jquery.min.js webassets build + cp example_prod.html build/index.html + ls -al build + - name: Deploy uses: JamesIves/github-pages-deploy-action@4.1.7 with: branch: gh-pages - folder: . + folder: build