From f5f630a2f6cb4e3f8d23a28bcd5ed44a5a31860f Mon Sep 17 00:00:00 2001 From: Evgenii Kozlov Date: Mon, 12 Aug 2024 16:54:30 +0200 Subject: [PATCH] DROID-2686 App | Tech | Updated release script for uploading artefacts --- .github/workflows/release.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 10e66b682b..466ed91a1d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,6 +6,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - uses: nttld/setup-ndk@v1 + with: + ndk-version: r23c - uses: actions/setup-java@v3 with: distribution: "zulu" @@ -57,6 +60,14 @@ jobs: if: always() run: ./scripts/release/clean-secrets.sh + - name: Upload artifacts + uses: actions/upload-artifact@master + with: + name: APK + BUNDLE + path: | + app/build/outputs/apk/release/ + app/build/outputs/bundle/release/ + - name: Prepare artefacts run: ./scripts/release/prepare-release-artefacts.sh