From eed1218673e676addafe71ad75d4214f64cc0795 Mon Sep 17 00:00:00 2001 From: Naveen Singh Date: Thu, 1 Jan 2026 00:07:17 +0530 Subject: [PATCH] build: add task to publish build to local cache using git hash as version --- .github/workflows/release.yml | 2 +- commons/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 94478299a..7f2e0a6cf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: branch: ${{ github.event.repository.default_branch }} noNewCommitBehavior: "warn" noVersionBumpBehavior: "warn" - patchList: fix, bugfix, perf, refactor, test, tests, chore + patchList: fix, bugfix, perf, refactor, test, tests, chore, build - name: Create and push tag if: ${{ steps.version.outputs.nextStrict }} diff --git a/commons/build.gradle.kts b/commons/build.gradle.kts index db9854f3e..bed8b952d 100644 --- a/commons/build.gradle.kts +++ b/commons/build.gradle.kts @@ -13,7 +13,7 @@ plugins { } group = "org.fossify" -version = "1.0.0" +version = findProperty("VERSION")?.toString() ?: System.getenv("VERSION") ?: "1.0.0" android { namespace = "org.fossify.commons"