Skip to content

Commit e73241a

Browse files
committed
Fixed critical bug in CI yamls with Base Builds.
1 parent 934456c commit e73241a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/builder_0_1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
- name: script
8383
run: bash build-scripts/CI/CIBB_32b -r $RPI_TYPE -o $RPIOS_TYPE
8484
shell: bash
85-
if: success() && github.event_name == 'pull_request'
85+
if: success() && (github.event_name == 'pull_request' || github.event_name == 'release')
8686
- name: before_script
8787
run: bash patches/curl_stfp_patcher
8888
shell: bash

.github/workflows/builder_2_3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- name: script
8181
run: bash build-scripts/CI/CIBB_32b -r $RPI_TYPE -o $RPIOS_TYPE
8282
shell: bash
83-
if: success() && github.event_name == 'pull_request'
83+
if: success() && (github.event_name == 'pull_request' || github.event_name == 'release')
8484
- name: before_script
8585
run: bash patches/curl_stfp_patcher
8686
shell: bash

.github/workflows/builder_3_plus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- name: script
8181
run: bash build-scripts/CI/CIBB_32b -r $RPI_TYPE -o $RPIOS_TYPE
8282
shell: bash
83-
if: success() && github.event_name == 'pull_request'
83+
if: success() && (github.event_name == 'pull_request' || github.event_name == 'release')
8484
- name: before_script
8585
run: bash patches/curl_stfp_patcher
8686
shell: bash

.github/workflows/builder_64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
- name: script
8383
run: bash build-scripts/CI/CIBB_64b -g $GCC_VERSION
8484
shell: bash
85-
if: success() && github.event_name == 'pull_request'
85+
if: success() && (github.event_name == 'pull_request' || github.event_name == 'release')
8686
- name: before_script
8787
run: bash patches/curl_stfp_patcher
8888
shell: bash

0 commit comments

Comments
 (0)