From 3aca6a584fe62a2aa545eb9ec0741ac1c0ad92fb Mon Sep 17 00:00:00 2001 From: D4ryl00 Date: Mon, 29 Jul 2024 12:11:32 +0200 Subject: [PATCH] fix: EAS build Signed-off-by: D4ryl00 --- .github/workflows/release.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e356612..5afa9a8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,13 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + - name: Debug semantic release output + run: | + echo ${{ steps.semantic.outputs }} + - name: Build on EAS working-directory: mobile - if: steps.semantic.outputs.new_release_version == 'true' - run: eas build --platform all --non-interactive --no-wait + if: steps.semantic.outputs.new_release_published == 'true' + run: | + echo ${{ steps.semantic.outputs.new_release_version }} + eas build --platform all --non-interactive --no-wait