Skip to content

Commit

Permalink
maybe this works
Browse files Browse the repository at this point in the history
Signed-off-by: David van der Spek <[email protected]>
  • Loading branch information
davidspek committed Feb 10, 2023
1 parent 77117f6 commit 2b19182
Showing 1 changed file with 55 additions and 1 deletion.
56 changes: 55 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,61 @@ defmodule Plural.MixProject do
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
],
releases: releases()
]
end

defp releases() do
[
plural: [
include_executables_for: [:unix],
include_erts: true,
strip_beams: true,
quiet: false,
applications: [
:runtime_tools,
api: :permanent,
core: :permanent,
email: :permanent,
graphql: :load
]
],
rtc: [
include_executables_for: [:unix],
include_erts: true,
strip_beams: true,
quiet: false,
applications: [
:runtime_tools,
rtc: :permanent,
core: :permanent,
graphql: :load
]
],
worker: [
include_executables_for: [:unix],
include_erts: true,
strip_beams: true,
quiet: false,
applications: [
:runtime_tools,
worker: :permanent,
core: :permanent
]
],
cron: [
include_executables_for: [:unix],
include_erts: true,
strip_beams: true,
quiet: false,
applications: [
:runtime_tools,
cron: :permanent,
core: :permanent,
email: :permanent
]
],
]
end

Expand Down

0 comments on commit 2b19182

Please sign in to comment.