commit 46b93f983b173b3e33409c9619235bc48cab8bd5
parent d90380f09bb820185eb891e0f8222cf925ea308c
Author: Nilotpal Gupta <nilotpalgupta0701@gmail.com>
Date: Tue, 2 Dec 2025 20:50:49 +0530
fixed ci/cd release
Diffstat:
2 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
@@ -5,6 +5,9 @@ on:
tags:
- "v*" # Triggers the workflow on tags like v1.0.0, v1.0.1, etc.
+permissions:
+ contents: write
+
jobs:
build:
name: Build APK and Release
@@ -67,4 +70,5 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
files: build/app/outputs/flutter-apk/app-release.apk
- generate_release_notes: true
+ generate_release_notes: false
+ body: "Inter IIT Adobe P.S. by IITG."
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts
@@ -89,13 +89,13 @@ chaquopy {
val pythonFile = if (isWindows) file("../../python_env/Scripts/python.exe") else file("../../python_env/bin/python")
if (pythonFile.exists()) {
+ println("Using local python environment: ${pythonFile.absolutePath}")
buildPython(pythonFile.absolutePath)
} else {
- println("Local python env not found. Using system 'python'.")
+ println("Local python env not found. Using system 'python' from PATH.")
buildPython("python")
}
- buildPython(pythonFile.absolutePath)
pip {
install("pillow")
install("numpy")