diff --git a/.github/workflows/update-releases.yaml b/.github/workflows/update-releases.yaml index cf88cfd..8d32ab3 100644 --- a/.github/workflows/update-releases.yaml +++ b/.github/workflows/update-releases.yaml @@ -71,7 +71,9 @@ jobs: run: | mkdir -p publish cp -r DS_Map/bin/${{env.BUILD_CONFIGURATION}}/* publish/ - ls DS_Map/bin/${{env.BUILD_CONFIGURATION}}/ + mkdir -p "publish/databases" + robocopy databases "publish/databases" /E /XD "databases\.git\objects\pack" + if ($LASTEXITCODE -le 7) { exit 0 } else { exit 1 } ls publish/ - name: Create Velopack Release diff --git a/DS_Map/Properties/AssemblyInfo.cs b/DS_Map/Properties/AssemblyInfo.cs index 4c0b403..8921d85 100644 --- a/DS_Map/Properties/AssemblyInfo.cs +++ b/DS_Map/Properties/AssemblyInfo.cs @@ -4,11 +4,11 @@ using System.Runtime.InteropServices; // Le informazioni generali relative a un assembly sono controllate dal seguente // set di attributi. Modificare i valori di questi attributi per modificare le informazioni // associate a un assembly. -[assembly: AssemblyTitle("DSPRE Reloaded 1.13.1")] +[assembly: AssemblyTitle("DSPRE Reloaded 1.14.0")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DSPRE Reloaded 1.13.1")] +[assembly: AssemblyProduct("DSPRE Reloaded 1.14.0")] [assembly: AssemblyCopyright("Copyright © 2025")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -31,5 +31,5 @@ using System.Runtime.InteropServices; // È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build // usando l'asterisco '*' come illustrato di seguito: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.13.1")] -[assembly: AssemblyFileVersion("1.13.1")] +[assembly: AssemblyVersion("1.14.0")] +[assembly: AssemblyFileVersion("1.14.0")]