Ecosystem
Cloud Builds (Alpha)
Automated builds via GitHub Actions.
Cloud Builds [EXPERIMENTAL]
Experimental Feature
Cloud Builds integration is currently in Alpha. GitHub Actions workflows may require manual adjustment. The command interface is subject to change.
Fluxy integrates directly with GitHub Actions to provide zero-cost CI/CD for your Flutter apps.
Setup
Run the following command to generate a GitHub Actions workflow file:
fluxy cloud setupThis creates a .github/workflows/fluxy_build.yml file in your repository.
Triggering a Build
Pushing to the main branch or creating a tag will trigger a build.
git tag v1.0.0
git push origin v1.0.0The workflow will automatically:
- Set up Flutter environment.
- Install dependencies.
- Run tests.
- Build Android APK/AppBundle.
- Build iOS IPA (requires macOS runner).
- Upload artifacts to GitHub Releases.
Artifacts
Once the build is complete, you can download the APKs and IPAs directly from the GitHub Actions run summary or Releases page.