Skip to content

feat: table is now possible to shrink wrap #260

feat: table is now possible to shrink wrap

feat: table is now possible to shrink wrap #260

name: Publish to github pages
on:
push:
branches: ["main"]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Setup Pages
uses: actions/configure-pages@v3
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
- run: flutter packages get
- run: dart analyze
- run: flutter packages get
working-directory: ./example
- run: dart analyze
working-directory: ./example
- run: flutter build web
working-directory: ./example
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "./example/build/web"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1