From 2f6f8c8cbf3870c508b532ae9a5845ac0d6f7711 Mon Sep 17 00:00:00 2001 From: SAUL Date: Fri, 10 Jan 2025 14:37:52 +0400 Subject: [PATCH] Code documentation --- .github/workflows/build.yml | 4 ++-- build.gradle.kts | 8 -------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6a992ec..4892898 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,7 +35,7 @@ jobs: run: chmod +x ./gradlew # Ensure gradlew is executable - name: Build the app and force the MSI task to run - run: ./gradlew packageMsi --rerun-tasks --warning-mode all + run: ./gradlew packageDeb --rerun-tasks --warning-mode all - name: List output directories (for debugging) run: ls -R build # Verify that MSI files are created in expected directory @@ -44,5 +44,5 @@ jobs: uses: actions/upload-artifact@v3 with: name: secvault-msi - path: build/compose/binaries/main/msi/*.msi # Ensure this matches the actual path after build + path: build/compose/binaries/main/deb/*.deb # Ensure this matches the actual path after build if-no-files-found: warn diff --git a/build.gradle.kts b/build.gradle.kts index 39aacc0..48c51c5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -83,12 +83,4 @@ compose.desktop { packageVersion = "1.0.0" } } -} - -allprojects { - gradle.projectsEvaluated { - tasks.withType { - options.compilerArgs.add("-Xlint:-deprecation") - } - } } \ No newline at end of file