v
All checks were successful
Build and Release FLUX (Multi-Platform) / build-android (push) Successful in 1m28s
Build and Release FLUX (Multi-Platform) / build-web (push) Successful in 1m2s
Build and Release FLUX (Multi-Platform) / build-windows (push) Successful in 4m1s

This commit is contained in:
2026-05-23 17:16:51 +02:00
parent b700c2de8d
commit 31066a4d8f
3 changed files with 6 additions and 6 deletions

View File

@@ -21,16 +21,16 @@ jobs:
- name: Build Flutter Windows - name: Build Flutter Windows
run: flutter build windows --release run: flutter build windows --release
- name: Compila Installer Inno Setup - name: Build Windows Installer
run: | run: |
$TagVersion = "${{ gitea.ref_name }}".Substring(1) $TagVersion = "${{ github.ref_name }}".Substring(1)
"C:\Program Files (x86)\Inno Setup 6\ISCC.exe" /DMyAppVersion=$TagVersion "win_installer.iss" & "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" "/DMyAppVersion=$TagVersion" "win_installer.iss"
# Nel dubbio usiamo l'action per caricare l'asset # Nel dubbio usiamo l'action per caricare l'asset
- name: Upload Windows Asset - name: Upload Windows Asset
uses: https://gitea.com/actions/release-action@main uses: https://gitea.com/actions/release-action@main
with: with:
files: "build/windows/installer/FLUX_Setup_x64.exe" files: "build/windows/installer/FluxInstaller.exe"
api_key: ${{ secrets.MYRELEASE_TOKEN }} api_key: ${{ secrets.MYRELEASE_TOKEN }}
- name: Pulisci Workspace Windows - name: Pulisci Workspace Windows

View File

@@ -1,7 +1,7 @@
name: flux name: flux
description: "Gestione attività negozio di telefonia" description: "Gestione attività negozio di telefonia"
publish_to: 'none' publish_to: 'none'
version: 1.0.11+11 version: 1.0.12+12
environment: environment:
sdk: ^3.11.3 sdk: ^3.11.3

View File

@@ -9,7 +9,7 @@ DefaultDirName={autopf}\Flux
; Cartella di output dell'installer e nome del file generato ; Cartella di output dell'installer e nome del file generato
OutputDir=.\build\windows\installer OutputDir=.\build\windows\installer
OutputBaseFilename=FluxInstaller.exe OutputBaseFilename=FluxInstaller
; Compressione e impostazioni grafiche ; Compressione e impostazioni grafiche
Compression=lzma2/max Compression=lzma2/max