Skip to content

Commit 3aca6a5

Browse files
committed
fix: EAS build
Signed-off-by: D4ryl00 <d4ryl00@gmail.com>
1 parent 819fe67 commit 3aca6a5

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/release.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,13 @@ jobs:
4545
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4646
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
4747

48+
- name: Debug semantic release output
49+
run: |
50+
echo ${{ steps.semantic.outputs }}
51+
4852
- name: Build on EAS
4953
working-directory: mobile
50-
if: steps.semantic.outputs.new_release_version == 'true'
51-
run: eas build --platform all --non-interactive --no-wait
54+
if: steps.semantic.outputs.new_release_published == 'true'
55+
run: |
56+
echo ${{ steps.semantic.outputs.new_release_version }}
57+
eas build --platform all --non-interactive --no-wait

0 commit comments

Comments
 (0)