We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e43e53e commit 4fa9e03Copy full SHA for 4fa9e03
1 file changed
.github/workflows/deploy.yml
@@ -39,6 +39,10 @@ jobs:
39
run: |
40
mix assets.deploy
41
mix phx.digest
42
+ # Ensure static directory exists
43
+ mkdir -p priv/static/images
44
+ # Copy any static assets if they exist
45
+ cp -r assets/static/* priv/static/ 2>/dev/null || true
46
47
- name: Deploy to GitHub Pages
48
uses: peaceiris/actions-gh-pages@v3
0 commit comments