File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ name: CI
3
3
on :
4
4
pull_request :
5
5
branches :
6
- - master
6
+ - main
7
7
push :
8
8
branches :
9
- - master
9
+ - main
10
10
11
11
jobs :
12
12
mix :
Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ to your list of dependencies in `mix.exs`:
18
18
19
19
``` elixir
20
20
def deps do
21
- [{:mix_task_archive_deps , " ~> 0.3 .0" }]
21
+ [{:mix_task_archive_deps , " ~> 1 .0" }]
22
22
end
23
23
```
24
24
25
25
Alternatively the package can be installed as an archive from release:
26
26
27
27
```
28
- mix archive.install https://github.com/hairyhum/mix_task_archive_deps/releases/download/0.3. 0/mix_task_archive_deps-0.3 .0.ez
28
+ mix archive.install https://github.com/hairyhum/mix_task_archive_deps/releases/download/1.0. 0/mix_task_archive_deps-1.0 .0.ez
29
29
```
30
30
31
31
The docs can be found at [ https://hexdocs.pm/mix_task_archive_deps ] ( https://hexdocs.pm/mix_task_archive_deps ) .
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ defmodule Mix.Tasks.Archive.Build.Deps do
60
60
## Build delendencies archives
61
61
Mix.Dep . load_on_environment ( env: Mix . env ( ) )
62
62
|> Enum . filter ( fn % Mix.Dep { app: app } -> not Enum . member? ( skip , app ) end )
63
+ |> Enum . filter ( fn % Mix.Dep { opts: opts } -> Keyword . get ( opts , :runtime , true ) end )
63
64
|> Enum . map ( fn % Mix.Dep { app: app , status: status } ->
64
65
version =
65
66
case status do
You can’t perform that action at this time.
0 commit comments