diff --git a/.github/workflows/staticsite.yml b/.github/workflows/staticsite.yml index ac3c0d542..191bad744 100644 --- a/.github/workflows/staticsite.yml +++ b/.github/workflows/staticsite.yml @@ -32,29 +32,12 @@ jobs: working-directory: assets/generate-pages steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - - name: Set up Docker Layer caching - uses: satackey/action-docker-layer-caching@v0.0.11 - # Ignore the failure of a step and avoid terminating the job. - continue-on-error: true - name: Build the static site run: docker compose run --rm --entrypoint "/bin/bash -c 'npm install;npx eleventy'" eleventy -# - name: Test the generated pages -# run: | -# mkdir -p smashtest -# chmod -R a+rw smashtest -# npm install smashtest -# npx smashtest -# -# - name: Upload Smashtest Report Artifact -# uses: actions/upload-artifact@v3 -# with: -# name: smashtest-report -# path: assets/generate-pages/smashtest/ - name: Setup Github Pages uses: actions/configure-pages@v2