Skip to content

Update view_in_web.png #13

Update view_in_web.png

Update view_in_web.png #13

name: Window Installer
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: "12.x"
cache: 'gradle'
- uses: subosito/flutter-action@v2
with:
flutter-version: "3.10.2"
channel: 'stable'
cache: true
- name: Get dependencies
run: flutter --disable-telemetry && flutter pub get && flutter doctor || true
- name: Get dependencies example app
working-directory: example
run: flutter pub get && flutter create --platforms=windows .
- name: Install NSIS
run: choco install nsis -y # If using Chocolatey, or use an alternative method to install NSIS
- name: Start build
working-directory: example
run: flutter build windows
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2
with:
name: Window - Release
path: example/build/windows/runner/Release/example.exe