Skip to content

feat: create empty shaders/index.html for GitHub Pages deployment #8

feat: create empty shaders/index.html for GitHub Pages deployment

feat: create empty shaders/index.html for GitHub Pages deployment #8

Workflow file for this run

name: Deploy Flutter Web to GitHub Pages
on:
push:
branches: [ main ]
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.32.8'
channel: 'stable'
- name: Get dependencies
run: flutter pub get
- name: Copy shaders to assets
run: dart scripts/copy_shaders.dart
- name: Build web
run: flutter build web --release --base-href /shaders_gallery/
- name: Create empty shaders/index.html
run: echo "<!DOCTYPE html><html><head></head><body></body></html>" > build/web/shaders/index.html
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./build/web
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4