ensure releases don't collide
authorFloatingGhost <hannah@coffee-and-dreams.uk>
Sat, 11 Jun 2022 17:32:10 +0000 (18:32 +0100)
committerFloatingGhost <hannah@coffee-and-dreams.uk>
Sat, 11 Jun 2022 17:32:10 +0000 (18:32 +0100)
.woodpecker/.release.yml
README.md

index 68a05e99d555509fc7eee3cd59967abf815dbfd1..800dd1ffb0c1d93affbcce17f1ba824ccef62446 100644 (file)
@@ -21,7 +21,6 @@ pipeline:
     - SCW_ACCESS_KEY
     - SCW_SECRET_KEY
     - SCW_DEFAULT_ORGANIZATION_ID
-    group: release
     image: ${docker_prefix}elixir:1.13
     environment:
       MIX_ENV: prod
@@ -34,6 +33,7 @@ pipeline:
       - echo "import Mix.Config" > config/prod.secret.exs
       - mix local.hex --force
       - mix local.rebar --force
+      - mix deps.clean --all
       - mix deps.get --only prod
       - mkdir release
       - export PLEROMA_BUILD_BRANCH=$CI_COMMIT_BRANCH
@@ -62,6 +62,7 @@ pipeline:
       - echo "import Mix.Config" > config/prod.secret.exs
       - mix local.hex --force
       - mix local.rebar --force
+      - mix deps.clean --all 
       - mix deps.get --only prod
       - mkdir release
       - export PLEROMA_BUILD_BRANCH=${CI_COMMIT_BRANCH}
index 25fde90b9400aaea888618bb1964fb128e5b13f1..7dd7f17650530bb83e15d8932ea9592518c9efba 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,3 +1,34 @@
+## Upgrading to Akkoma
+
+### From source
+
+```bash
+git remote set-url origin https://akkoma.dev/AkkomaGang/akkoma.git/
+git fetch origin
+git pull -r
+```
+
+Then compile, migrate and restart as usual.
+
+Then if you've done anything fancy to the frontend, you'll want to get the
+updates for that as well. This won't be the same for any two instances,
+so `https://akkoma.dev/AkkomaGang/pleroma-fe` is the repo you need.
+
+### From OTP
+
+```bash
+./bin/pleroma_ctl update --zip-url https://akkoma-updates.s3-website.fr-par.scw.cloud/develop/akkoma-amd64.zip
+./bin/pleroma_ctl migrate
+``` 
+
+Then restart. When updating in the future, can just use
+
+```bash
+./bin/pleroma_ctl update --branch develop
+```
+
+### Old readme follows
+
 <img src="https://git.pleroma.social/pleroma/pleroma/uploads/8cec84f5a084d887339f57deeb8a293e/pleroma-banner-vector-nopad-notext.svg" width="300px" />
 
 ## About