Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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-latest

steps:
- 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.
```