-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from stellarwp/1.1.5
1.1.5
- Loading branch information
Showing
13 changed files
with
45 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,8 +46,8 @@ jobs: | |
type=ref,event=tag | ||
type=semver,pattern={{raw}} | ||
- name: Change Dockerfile to php8.0 | ||
run: "sed -i 's/7.4/7.3/g' containers/slic/Dockerfile" | ||
- name: Change Dockerfile to php7.3 | ||
run: "sed -i 's/7.4/7.3/g' containers/wordpress/Dockerfile" | ||
|
||
- name: Build and push slic-wordpress Docker image | ||
uses: docker/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ jobs: | |
type=semver,pattern={{raw}} | ||
- name: Change Dockerfile to php8.0 | ||
run: "sed -i 's/7.4/8.0/g' containers/slic/Dockerfile" | ||
run: "sed -i 's/7.4/8.0/g' containers/wordpress/Dockerfile" | ||
|
||
- name: Build and push slic-wordpress Docker image | ||
uses: docker/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,8 +46,8 @@ jobs: | |
type=ref,event=tag | ||
type=semver,pattern={{raw}} | ||
- name: Change Dockerfile to php8.0 | ||
run: "sed -i 's/7.4/8.1/g' containers/slic/Dockerfile" | ||
- name: Change Dockerfile to php8.1 | ||
run: "sed -i 's/7.4/8.1/g' containers/wordpress/Dockerfile" | ||
|
||
- name: Build and push slic-wordpress Docker image | ||
uses: docker/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -359,6 +359,7 @@ function ensure_wordpress_installed(): bool { | |
'$_POST["admin_password2"] = "password"; ' . | ||
'$_POST["admin_email"] = "[email protected]"; ' . | ||
'$_POST["blog_public"] = 1; ' . | ||
'function wp_mail(){ return true; } ' . // It's pluggable, this will mute it. | ||
'include "' . $install_file . '";'; | ||
|
||
$command = escapeshellarg( PHP_BINARY ) . ' -r \'' . $code . '\''; | ||
|