Skip to content

Commit b92b445

Browse files
committed
fix typo
1 parent 9d633a2 commit b92b445

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/scripts/download-bundled/make-workflow-file.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public function makeWorkflowFile(): void
142142
foreach ($this->bundles as $bundle) {
143143
$steps[] = [
144144
'name' => $bundle->name,
145-
'if' => '${{ !cancelled() && (steps.changes.outputs.pcre2 == \'true\' || github.event_name == \'schedule\' || github.event_name == \'workflow_dispatch\') }}',
145+
'if' => '${{ !cancelled() && (steps.changes.outputs.' . $bundle->getNameForPath() . ' == \'true\' || github.event_name == \'schedule\' || github.event_name == \'workflow_dispatch\') }}',
146146
'run' => implode("\n", [
147147
'echo "::group::Download"',
148148
'.github/scripts/download-bundled/' . $bundle->getNameForPath() . '.sh',

.github/workflows/verify-bundled-files.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- 'ext/uri/uriparser/**'
4242
4343
- name: 'boost.context'
44-
if: ${{ !cancelled() && (steps.changes.outputs.pcre2 == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') }}
44+
if: ${{ !cancelled() && (steps.changes.outputs.boost-context == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') }}
4545
run: |
4646
echo "::group::Download"
4747
.github/scripts/download-bundled/boost-context.sh
@@ -59,7 +59,7 @@ jobs:
5959
.github/scripts/test-directory-unchanged.sh 'ext/pcre/pcre2lib'
6060
echo "::endgroup::"
6161
- name: uriparser
62-
if: ${{ !cancelled() && (steps.changes.outputs.pcre2 == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') }}
62+
if: ${{ !cancelled() && (steps.changes.outputs.uriparser == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') }}
6363
run: |
6464
echo "::group::Download"
6565
.github/scripts/download-bundled/uriparser.sh

0 commit comments

Comments
 (0)