Skip to content

Commit 7b7ef5b

Browse files
committed
fix
1 parent 4ae09c6 commit 7b7ef5b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests_results.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,11 @@ jobs:
109109
core.info(`${name} is ${state}`);
110110
111111
- name: Create output folder
112-
if: !cancelled() && ${{ (env.original_event == 'schedule' || env.original_event == 'workflow_dispatch') }}
112+
if: ${{ !cancelled() && (env.original_event == 'schedule' || env.original_event == 'workflow_dispatch') }}
113113
run: mkdir -p runtime-tests-results
114114

115115
- name: Generate badge
116-
if: !cancelled() && ${{ (env.original_event == 'schedule' || env.original_event == 'workflow_dispatch') }}
116+
if: ${{ !cancelled() && (env.original_event == 'schedule' || env.original_event == 'workflow_dispatch') }}
117117
uses: jaywcjlove/generated-badges@main
118118
with:
119119
label: Runtime Tests
@@ -122,7 +122,7 @@ jobs:
122122
color: ${{ job.status == 'success' && 'green' || 'red' }}
123123

124124
- name: Deploy badge
125-
if: !cancelled() && ${{ (env.original_event == 'schedule' || env.original_event == 'workflow_dispatch') }}
125+
if: ${{ !cancelled() && (env.original_event == 'schedule' || env.original_event == 'workflow_dispatch') }}
126126
uses: peaceiris/actions-gh-pages@v3
127127
with:
128128
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)