Skip to content

Commit 9716d94

Browse files
committed
ci: fix deploy
1 parent d6f7773 commit 9716d94

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ jobs:
4141
run: flutter build web --release --base-href /shaders_gallery/
4242

4343
- name: Create empty shaders/index.html
44-
run: echo "<!DOCTYPE html><html><head></head><body></body></html>" > build/web/shader/index.html
44+
run: |
45+
mkdir -p build/web/shader
46+
echo "<!DOCTYPE html><html><head></head><body></body></html>" > build/web/shader/index.html
4547
4648
- name: Setup Pages
4749
uses: actions/configure-pages@v5

0 commit comments

Comments
 (0)