Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/g1j0shi/flutter-web-app-deployment
Deploys the Flutter web application to GitHub pages.
https://github.com/g1j0shi/flutter-web-app-deployment
deployment flutter github-actions github-pages publishing
Last synced: 3 days ago
JSON representation
Deploys the Flutter web application to GitHub pages.
- Host: GitHub
- URL: https://github.com/g1j0shi/flutter-web-app-deployment
- Owner: G1J0SHI
- Created: 2025-01-03T14:42:31.000Z (15 days ago)
- Default Branch: main
- Last Pushed: 2025-01-03T15:11:22.000Z (15 days ago)
- Last Synced: 2025-01-03T15:39:30.929Z (15 days ago)
- Topics: deployment, flutter, github-actions, github-pages, publishing
- Homepage: https://github.com/marketplace/actions/flutter-web-app-deployment
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GitHub Action
## Flutter Web App Deployment
### Deploys the Flutter web application to GitHub pages.
#### Usage
```yml
name: "Flutter Web App Deployment"on: [push]
jobs:
build:
runs-on: ubuntu-lateststeps:
- uses: actions/checkout@main
- uses: subosito/flutter-action@main
- uses: g1j0shi/flutter-web-app-deployment@main
```#### Input
```yml
...
- uses: g1j0shi/flutter-web-app-deployment@main
with:
branch: "gh-pages" # The branch where the web app will be deployed.
href: "/" # The base href for the Flutter web application.
```