diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index d27a3d2f3..342aebb3a 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -54,7 +54,14 @@ jobs: - name: List dist directory run: | ls -la ./dist - cat ./dist/pattern/index.html + head -n 100 ./dist/pattern/index.html + + - name: Upload index.html as artifact + uses: actions/upload-artifact@v2 + with: + name: index-html-file + path: ./dist/pattern/index.html + # Step 5: Deploy to GitHub Pages using the 'dist' directory