update pleroma-fe url
ci/woodpecker/push/release Pipeline was successful Details
ci/woodpecker/push/lint Pipeline failed Details
ci/woodpecker/push/test unknown status Details

This commit is contained in:
FloatingGhost 2022-06-15 18:18:23 +01:00
parent f919035664
commit 5b11543c96
2 changed files with 9 additions and 8 deletions

View File

@ -734,10 +734,11 @@ config :pleroma, :frontends,
},
"pleroma-fe" => %{
"name" => "pleroma-fe",
"git" => "https://git.pleroma.social/pleroma/pleroma-fe",
"git" => "https://akkoma.dev/AkkomaGang/pleroma-fe",
"build_url" =>
"https://git.pleroma.social/pleroma/pleroma-fe/-/jobs/artifacts/${ref}/download?job=build",
"ref" => "develop"
"https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/akkoma-fe.zip",
"ref" => "develop",
"build_dir" => "dist"
},
"fedi-fe" => %{
"name" => "fedi-fe",

View File

@ -32,20 +32,20 @@ defmodule Pleroma.Frontend do
label = "#{name} (#{ref})"
tmp_dir = Path.join(dir(), "tmp")
IO.puts("Downloading #{label}...")
with {_, :ok} <-
{: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
File.rm_rf!(tmp_dir)
Logger.info("Frontend #{label} installed to #{dest}")
IO.puts("Frontend #{label} installed to #{dest}")
else
{: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"}
_e ->
Logger.info("Could not install the frontend")
IO.puts("Could not install the frontend")
{:error, "Could not install the frontend"}
end
end