Skip to content

Commit 4501ce8

Browse files
committed
fix: check allure true
1 parent 1807785 commit 4501ce8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/android-regression.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999

100100
- name: Fetch result history from gh-pages
101101
uses: ./github/actions/fetch-allure-history
102-
if: ${{ env.ALLURE_ENABLED }}
102+
if: ${{ env.ALLURE_ENABLED == 'true' }}
103103
with:
104104
PLATFORM: ${{ env.PLATFORM }}
105105
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -258,7 +258,7 @@ jobs:
258258
259259
- name: Generate and publish test report
260260
uses: ./github/actions/generate-publish-test-report
261-
if: ${{ always() && env.ALLURE_ENABLED }}
261+
if: ${{ always() && env.ALLURE_ENABLED == 'true' }}
262262
with:
263263
PLATFORM: ${{ env.PLATFORM }}
264264
BUILD_NUMBER: ${{ env.BUILD_NUMBER }}

.github/workflows/ios-regression.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100

101101
- name: Fetch result history from gh-pages
102102
uses: ./github/actions/fetch-allure-history
103-
if: ${{ env.ALLURE_ENABLED }}
103+
if: ${{ env.ALLURE_ENABLED == 'true' }}
104104
with:
105105
PLATFORM: ${{ env.PLATFORM }}
106106
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -148,7 +148,7 @@ jobs:
148148
149149
- name: Generate and publish test report
150150
uses: ./github/actions/generate-publish-test-report
151-
if: ${{ always() && env.ALLURE_ENABLED }}
151+
if: ${{ always() && env.ALLURE_ENABLED == 'true' }}
152152
with:
153153
PLATFORM: ${{ env.PLATFORM }}
154154
BUILD_NUMBER: ${{ env.BUILD_NUMBER }}

0 commit comments

Comments
 (0)