forked from AkkomaGang/akkoma
update pleroma-fe url
This commit is contained in:
parent
f919035664
commit
5b11543c96
2 changed files with 9 additions and 8 deletions
|
@ -734,10 +734,11 @@
|
||||||
},
|
},
|
||||||
"pleroma-fe" => %{
|
"pleroma-fe" => %{
|
||||||
"name" => "pleroma-fe",
|
"name" => "pleroma-fe",
|
||||||
"git" => "https://git.pleroma.social/pleroma/pleroma-fe",
|
"git" => "https://akkoma.dev/AkkomaGang/pleroma-fe",
|
||||||
"build_url" =>
|
"build_url" =>
|
||||||
"https://git.pleroma.social/pleroma/pleroma-fe/-/jobs/artifacts/${ref}/download?job=build",
|
"https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/akkoma-fe.zip",
|
||||||
"ref" => "develop"
|
"ref" => "develop",
|
||||||
|
"build_dir" => "dist"
|
||||||
},
|
},
|
||||||
"fedi-fe" => %{
|
"fedi-fe" => %{
|
||||||
"name" => "fedi-fe",
|
"name" => "fedi-fe",
|
||||||
|
|
|
@ -32,20 +32,20 @@ def install(name, opts \\ []) do
|
||||||
|
|
||||||
label = "#{name} (#{ref})"
|
label = "#{name} (#{ref})"
|
||||||
tmp_dir = Path.join(dir(), "tmp")
|
tmp_dir = Path.join(dir(), "tmp")
|
||||||
|
IO.puts("Downloading #{label}...")
|
||||||
with {_, :ok} <-
|
with {_, :ok} <-
|
||||||
{:download_or_unzip, download_or_unzip(frontend_info, tmp_dir, opts[:file])},
|
{:download_or_unzip, download_or_unzip(frontend_info, tmp_dir, opts[:file])},
|
||||||
Logger.info("Installing #{label} to #{dest}"),
|
IO.puts("Installing #{label} to #{dest}"),
|
||||||
:ok <- install_frontend(frontend_info, tmp_dir, dest) do
|
:ok <- install_frontend(frontend_info, tmp_dir, dest) do
|
||||||
File.rm_rf!(tmp_dir)
|
File.rm_rf!(tmp_dir)
|
||||||
Logger.info("Frontend #{label} installed to #{dest}")
|
IO.puts("Frontend #{label} installed to #{dest}")
|
||||||
else
|
else
|
||||||
{:download_or_unzip, _} ->
|
{:download_or_unzip, _} ->
|
||||||
Logger.info("Could not download or unzip the frontend")
|
IO.puts("Could not download or unzip the frontend")
|
||||||
{:error, "Could not download or unzip the frontend"}
|
{:error, "Could not download or unzip the frontend"}
|
||||||
|
|
||||||
_e ->
|
_e ->
|
||||||
Logger.info("Could not install the frontend")
|
IO.puts("Could not install the frontend")
|
||||||
{:error, "Could not install the frontend"}
|
{:error, "Could not install the frontend"}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue