diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..90d2bba --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,13 @@ +# These are supported funding model platforms + +github: [salahhusa9] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/CHANGELOG.md b/CHANGELOG.md index 27908bd..2467857 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to `laravel-updater` will be documented in this file. +## Laravel Updater v1 - 2023-11-21 + +### What's Changed + +- Update actions/setup-node action to v4 by @renovate in https://github.com/salahhusa9/laravel-updater/pull/14 +- Git failed exception by @salahhusa9 in https://github.com/salahhusa9/laravel-updater/pull/17 +- Tests pipelines by @salahhusa9 in https://github.com/salahhusa9/laravel-updater/pull/18 +- Tests Repository Source by @salahhusa9 in https://github.com/salahhusa9/laravel-updater/pull/19 +- Command test by @salahhusa9 in https://github.com/salahhusa9/laravel-updater/pull/20 +- updater facade tests by @salahhusa9 in https://github.com/salahhusa9/laravel-updater/pull/21 +- Remove Git Pull in update by @salahhusa9 in https://github.com/salahhusa9/laravel-updater/pull/22 + +**Full Changelog**: https://github.com/salahhusa9/laravel-updater/compare/v0.0.1...v1.0.0 + ## Laravel Updater Beta - 2023-10-31 ### What's Changed diff --git a/src/Pipelines/GitPipe.php b/src/Pipelines/GitPipe.php index 4b715bd..b7fc3f9 100644 --- a/src/Pipelines/GitPipe.php +++ b/src/Pipelines/GitPipe.php @@ -26,7 +26,7 @@ public function handle($content, Closure $next) Git::auth(); Git::fetch(); - Git::pull(); + $checkout = Git::checkout($version); if ($checkout != 'TEST' and Updater::getCurrentVersion() != $version) {