kamal 1.8.1 → 1.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/kamal/commands/builder/clone.rb +3 -2
- data/lib/kamal/configuration/docs/env.yml +1 -1
- data/lib/kamal/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ae26abb4fc1400cdea434a6208bdbd1cfe91b3a11ba395205e38772ecc0256a
|
|
4
|
+
data.tar.gz: d1e1e6a9c89b5397b5c8049b99a39c66900e2f92cba464cdd8210fea9d2ca839
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6fd1140905bef700c2ffa580510b1cd85e4d1961deae2f11f838a27cba88169f1262e5e51a75d94fee431c12a19ab43d789706d366ecc944c5cfbf1e94f0a751
|
|
7
|
+
data.tar.gz: 460f1e3af9f7d5ff7d3f044b1e0941132eff81164d34c8ef97698893dcf2f48b8aa6b7b50ca4f713fef0816ecb7bd56ab5cdab8a220c6ae8a810ae8c50715b50
|
|
@@ -6,7 +6,7 @@ module Kamal::Commands::Builder::Clone
|
|
|
6
6
|
end
|
|
7
7
|
|
|
8
8
|
def clone
|
|
9
|
-
git :clone, Kamal::Git.root, path: clone_directory
|
|
9
|
+
git :clone, Kamal::Git.root, "--recurse-submodules", path: clone_directory
|
|
10
10
|
end
|
|
11
11
|
|
|
12
12
|
def clone_reset_steps
|
|
@@ -14,7 +14,8 @@ module Kamal::Commands::Builder::Clone
|
|
|
14
14
|
git(:remote, "set-url", :origin, Kamal::Git.root, path: build_directory),
|
|
15
15
|
git(:fetch, :origin, path: build_directory),
|
|
16
16
|
git(:reset, "--hard", Kamal::Git.revision, path: build_directory),
|
|
17
|
-
git(:clean, "-fdx", path: build_directory)
|
|
17
|
+
git(:clean, "-fdx", path: build_directory),
|
|
18
|
+
git(:submodule, :update, "--init", path: build_directory)
|
|
18
19
|
]
|
|
19
20
|
end
|
|
20
21
|
|
|
@@ -29,7 +29,7 @@ env:
|
|
|
29
29
|
# To pass the secrets you should list them under the `secret` key. When you do this the
|
|
30
30
|
# other variables need to be moved under the `clear` key.
|
|
31
31
|
#
|
|
32
|
-
# Unlike clear
|
|
32
|
+
# Unlike clear values, secrets are not passed directly to the container,
|
|
33
33
|
# but are stored in an env file on the host
|
|
34
34
|
# The file is not updated when deploying, only when running `kamal envify` or `kamal env push`.
|
|
35
35
|
env:
|
data/lib/kamal/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kamal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Heinemeier Hansson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-08-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|