Update release.php

This commit is contained in:
Remco Tolsma 2024-06-24 09:45:40 +02:00
parent 4f4758c75f
commit 2a860e5e95
1 changed files with 15 additions and 3 deletions

View File

@ -25,6 +25,14 @@ if ( empty( $acf_pro_license ) ) {
exit( 1 ); exit( 1 );
} }
$acf_pro_url = getenv( 'ACF_PRO_URL' );
if ( empty( $acf_pro_url ) ) {
echo 'ACF PRO license URL not defined in `ACF_PRO_URL` environment variable.';
exit( 1 );
}
/** /**
* Request info. * Request info.
*/ */
@ -46,7 +54,7 @@ $data_plugins = [
$data_wp = [ $data_wp = [
'wp_name' => 'acf', 'wp_name' => 'acf',
'wp_url' => 'http://acf.local', 'wp_url' => $acf_pro_url,
'wp_version' => '6.3', 'wp_version' => '6.3',
'wp_language' => 'en-US', 'wp_language' => 'en-US',
'wp_timezone' => '', 'wp_timezone' => '',
@ -72,8 +80,6 @@ $data = run(
$result = json_decode( $data ); $result = json_decode( $data );
var_dump( $result );
if ( ! is_object( $result ) ) { if ( ! is_object( $result ) ) {
throw new Exception( throw new Exception(
sprintf( sprintf(
@ -111,6 +117,12 @@ $version = $plugin->new_version;
$url = $plugin->package; $url = $plugin->package;
if ( '' === $url ) {
echo 'Package URL is empty';
exit( 1 );
}
line( line(
sprintf( sprintf(
'ACF Version: %s', 'ACF Version: %s',