diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index e2c150c3..1dbf4bcc 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -51,7 +51,7 @@ jobs: run: | REPO_NAME=${{ github.repository }} REPO_NAME=${REPO_NAME#${{ github.repository_owner }}/} - cp -avr sandbox/build/distributions/ public; + cp -avr sandbox/build/dist/js/productionExecutable/ public; find public -type f -regex '.*\.\(htm\|html\|txt\|text\|js\|css\)$' -exec gzip -f -k {} \; # echo "/${REPO_NAME} /${REPO_NAME}/${REPO_NAME}/index.html 301" > public/_redirects; # echo "/${REPO_NAME}/index.html /${REPO_NAME}/${REPO_NAME}/index.html 301" >> public/_redirects; @@ -63,14 +63,3 @@ jobs: build_dir: public env: GITHUB_TOKEN: ${{ github.token }} - -# - uses: actions/setup-python@v2 -# with: -# python-version: 3.x -# - run: | -# git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" -# git config --local user.name "github-actions[bot]" -# git fetch origin gh-pages --depth=1 -# - run: | -# pip install mkdocs-material mike -# - run: ./gradlew :npm-publish-docs:mikeDeploy -Pversion='${{ steps.resolve.outputs.version }}'