mirror of
https://github.com/lupyuen/nuttx-release.git
synced 2025-01-12 23:28:30 +08:00
Remove "cache: false"
This commit is contained in:
parent
75dcb341fb
commit
a8163ea8e5
2 changed files with 16 additions and 0 deletions
|
@ -58,6 +58,14 @@ cat $file \
|
|||
>$tmp_file
|
||||
mv $tmp_file $file
|
||||
|
||||
## Remove "cache: false"
|
||||
search="cache: false"
|
||||
replace=""
|
||||
cat $file \
|
||||
| sed "s/$search/$replace/g" \
|
||||
>$tmp_file
|
||||
mv $tmp_file $file
|
||||
|
||||
## Enable the macOS Builds
|
||||
## Change: if [[ "${{ inputs.os }}" == "macOS" ]]; then
|
||||
## To: if [[ "${{ inputs.os }}" == "NOTUSED" ]]; then
|
||||
|
|
|
@ -59,6 +59,14 @@ cat $file \
|
|||
>$tmp_file
|
||||
mv $tmp_file $file
|
||||
|
||||
## Remove "cache: false"
|
||||
search="cache: false"
|
||||
replace=""
|
||||
cat $file \
|
||||
| sed "s/$search/$replace/g" \
|
||||
>$tmp_file
|
||||
mv $tmp_file $file
|
||||
|
||||
## Enable the macOS Builds
|
||||
## Change: if [[ "${{ inputs.os }}" == "macOS" ]]; then
|
||||
## To: if [[ "${{ inputs.os }}" == "NOTUSED" ]]; then
|
||||
|
|
Loading…
Reference in a new issue