From 3562e2bac64a64e447e61938c7344eb354fe40d9 Mon Sep 17 00:00:00 2001 From: Joseph Flinn <58369717+joseph-flinn@users.noreply.github.com> Date: Tue, 15 Feb 2022 07:57:21 -0800 Subject: [PATCH] Patch/release new build artifact name (#1778) * Switching the iOS build artifact and release asset names * disabling jobs/steps to test the new release asset name * switching to download artifacts from rc * testing the upload of the 'Bitwarden iOS' directory * Build zip asset of the Bitwarden iOS asset * trying a couple of different zip paths * Final package test * Re-enabling all of the jobs after testing (cherry picked from commit 95581bd4d9dc659a6b30b52431186cec2c940724) --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 395dacc93..496cc8941 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -68,13 +68,16 @@ jobs: workflow_conclusion: success branch: ${{ steps.branch.outputs.branch-name }} + - name: Prep Bitwarden iOS release asset + run: zip -r Bitwarden\ iOS.zip Bitwarden\ iOS + - name: Create release uses: ncipollo/release-action@95215a3cb6e6a1908b3c44e00b4fdb15548b1e09 # v2.8.5 with: artifacts: "./com.x8bit.bitwarden.aab/com.x8bit.bitwarden.aab, ./com.x8bit.bitwarden.apk/com.x8bit.bitwarden.apk, ./com.x8bit.bitwarden-fdroid.apk/com.x8bit.bitwarden-fdroid.apk, - ./Bitwarden.ipa/Bitwarden.ipa" + ./Bitwarden iOS.zip" commit: ${{ github.sha }} tag: v${{ steps.retrieve-mobile-version.outputs.mobile_version }} name: Version ${{ steps.retrieve-mobile-version.outputs.mobile_version }}