You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-1
Original file line number
Diff line number
Diff line change
@@ -168,7 +168,7 @@ public function update(UpdaterManager $updater)
168
168
// .. and shorthand for this:
169
169
$updater->source()->update;
170
170
171
-
$updater->fetch() // Same as above...
171
+
$updater->fetch(); // Same as above...
172
172
}
173
173
```
174
174
@@ -183,6 +183,28 @@ of your software.
183
183
Just make sure you set the proper repository in your `config/self-updater.php`
184
184
file.
185
185
186
+
#### Tag-based updates
187
+
188
+
This is the default. Updates will be fetched by using a tagged commit, aka release.
189
+
190
+
#### Branch-based updates
191
+
192
+
Select the branch that should be used via the `use_branch` setting [inside the configuration](https://github.com/codedge/laravel-selfupdater/blob/master/config/self-update.php).
0 commit comments