We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03ce978 commit 99386bfCopy full SHA for 99386bf
config/nativephp.php
@@ -66,11 +66,22 @@
66
67
/**
68
* The updater provider to use.
69
- * Supported: "s3", "spaces"
+ * Supported: "github", "s3", "spaces"
70
*/
71
'default' => env('NATIVEPHP_UPDATER_PROVIDER', 'spaces'),
72
73
'providers' => [
74
+ 'github' => [
75
+ 'driver' => 'github',
76
+ 'repo' => env('GITHUB_REPO'),
77
+ 'owner' => env('GITHUB_OWNER'),
78
+ 'token' => env('GITHUB_TOKEN'),
79
+ 'vPrefixedTagName' => env('GITHUB_V_PREFIXED_TAG_NAME', true),
80
+ 'private' => env('GITHUB_PRIVATE', false),
81
+ 'channel' => env('GITHUB_CHANNEL', 'latest'),
82
+ 'releaseType' => env('GITHUB_RELEASE_TYPE', 'draft'),
83
+ ],
84
+
85
's3' => [
86
'driver' => 's3',
87
'key' => env('AWS_ACCESS_KEY_ID'),
0 commit comments