Skip to content

Commit

Permalink
Code documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
SAUL committed Jan 10, 2025
1 parent 9dbef76 commit 2f6f8c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
8 changes: 0 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,4 @@ compose.desktop {
packageVersion = "1.0.0"
}
}
}

allprojects {
gradle.projectsEvaluated {
tasks.withType<JavaCompile> {
options.compilerArgs.add("-Xlint:-deprecation")
}
}
}

0 comments on commit 2f6f8c8

Please sign in to comment.