From 3ca647a40ec8ce1f38aa9ed9ed3c8fcdc383283d Mon Sep 17 00:00:00 2001 From: Roberto Orgiu Date: Tue, 10 Sep 2024 10:38:06 +0200 Subject: [PATCH] Update Android CI Workflow Update Upload Artifact Action as the version used was deprecated --- .github/workflows/android.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 2ba081ede..bb08c8d11 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -53,7 +53,8 @@ jobs: run: zip -r assemble.zip . -i '**/build/*.apk' '**/build/*.aab' '**/build/*.aar' '**/build/*.so' - name: Upload artifacts - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: - name: assemble + pattern: assemble-* + merge-multiple: true path: assemble.zip