From 6ac9c5ef7522ae7415afaddf72724eaa0e2ed69f Mon Sep 17 00:00:00 2001 From: MohitMaliFtechiz Date: Fri, 14 Feb 2025 11:34:31 +0530 Subject: [PATCH] Removed the uploading of unnecessary files in the release. * Now, only APK files will be uploaded in the release. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e28f6d4c82..2065ecc178 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,7 +60,7 @@ jobs: - name: Upload APKs to Release uses: ncipollo/release-action@v1 with: - artifacts: "app/build/outputs/apk/standalone/**" + artifacts: "app/build/outputs/apk/standalone/*.apk" token: ${{ secrets.GITHUB_TOKEN }} tag: ${{ env.TAG }} allowUpdates: true