5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-02 04:54:17 +00:00

Merge branch 'issue-13022' into 'rails'

Issue 13022

See merge request sutty/sutty!151
This commit is contained in:
fauno 2023-05-13 14:47:31 +00:00
commit 371f8e7593
2 changed files with 8 additions and 0 deletions

View file

@ -14,6 +14,7 @@ class DeployLocal < Deploy
# Sutty
def deploy(output: false)
return false unless mkdir
return false unless git_lfs(output: output)
return false unless yarn(output: output)
return false unless pnpm(output: output)
return false unless bundle(output: output)
@ -113,6 +114,11 @@ class DeployLocal < Deploy
File.exist? pnpm_lock
end
def git_lfs(output: false)
run %(git lfs fetch), output: output
run %(git lfs checkout), output: output
end
def gem(output: false)
run %(gem install bundler --no-document), output: output
end

View file

@ -565,6 +565,8 @@ class Site < ApplicationRecord
def install_gems
return unless persisted?
deploys.find_by_type('DeployLocal').send(:git_lfs)
if !gem_dir? || gemfile_updated? || gemfile_lock_updated?
deploys.find_by_type('DeployLocal').send(:bundle)
touch