From 13d2dffcda590bfdb9fd29dce2d7e02fa5f236fd Mon Sep 17 00:00:00 2001 From: Advaita Krishna das Date: Mon, 29 Jul 2024 09:26:41 +0200 Subject: [PATCH] test --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 88590db..a13085e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -87,9 +87,13 @@ jobs: run: | curl -fsSL https://ionic.io/get-appflow-cli | bash + - name: Get Commit SHA + id: commit_sha + run: echo "::set-output name=sha::$(git submodule status modules/apps/mobile | awk '{print $1}' | cut -c 2-7)" + - name: Build App run: | - appflow build ${{ matrix.config.platform }} debug --commit ${{ github.sha }} --app-id=${{ secrets.IONIC_APP_ID }} --token ${{ secrets.IONIC_TOKEN }} + appflow build ${{ matrix.config.platform }} debug --commit ${{ steps.commit_sha.outputs.sha }} --app-id=${{ secrets.IONIC_APP_ID }} --token ${{ secrets.IONIC_TOKEN }} # # Stage 2: Deploy backend to staging