Compare commits
4
Commits
139f7e73da
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
42900ae1d5 | ||
|
|
f1aff4ba07 | ||
|
|
f5478cb50e | ||
|
|
f45ef16d98 |
@@ -25,7 +25,7 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: docker
|
||||
runs-on: light
|
||||
container:
|
||||
image: golang:1.26-bookworm@sha256:a688600ca24f8a4d3ca77f95b0dd40704a9fc787c826660eb7ba0b641b8b175d # 1.26-bookworm
|
||||
steps:
|
||||
@@ -40,7 +40,7 @@ jobs:
|
||||
release:
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
needs: [test]
|
||||
runs-on: docker
|
||||
runs-on: light
|
||||
container:
|
||||
image: golang:1.26-bookworm@sha256:a688600ca24f8a4d3ca77f95b0dd40704a9fc787c826660eb7ba0b641b8b175d # 1.26-bookworm
|
||||
steps:
|
||||
|
||||
+1
-1
@@ -27,7 +27,7 @@ write access to the checkpoint directory.
|
||||
Releases are tagged by date, like ihasmail's: `v2026.9.15`, with `.1`, `.2`
|
||||
added for another release the same day. Binaries for `linux/amd64` and
|
||||
`linux/arm64` and a `SHA256SUMS` file are attached to every
|
||||
[release](https://github.com/Coffey-Labs/stalwart-migrator/releases).
|
||||
[release](https://git.coffeylabs.org/coffey-labs/stalwart-migrator/releases).
|
||||
|
||||
Every release is built by the [release workflow](.github/workflows/release.yml)
|
||||
from a tagged commit on `main`, after the tests and a known-vulnerabilities
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# stalwart-migrator
|
||||
|
||||
[](https://github.com/Coffey-Labs/stalwart-migrator/releases/latest)
|
||||
[](https://git.coffeylabs.org/coffey-labs/stalwart-migrator/releases/latest)
|
||||
[](LICENSE)
|
||||
[](https://docs.ihasmail.org/install/stalwart-migrator/)
|
||||
|
||||
@@ -9,7 +9,7 @@ checkpoint at every step so an interrupted run resumes instead of restarting,
|
||||
and automated validation that the server still works afterwards. Go, standard
|
||||
library only.
|
||||
|
||||
A companion to [**ihasmail**](https://github.com/Coffey-Labs/ihasmail), a
|
||||
A companion to [**ihasmail**](https://git.coffeylabs.org/coffey-labs/ihasmail), a
|
||||
JMAP-first webmail client for Stalwart. That one is what you read your mail in;
|
||||
this one gets the server underneath it onto a version that speaks the protocol
|
||||
it needs.
|
||||
@@ -60,8 +60,8 @@ Details: [Known Stalwart problems](docs/known-stalwart-problems.md).
|
||||
|
||||
```sh
|
||||
ARCH=amd64 # or arm64
|
||||
curl -fsSLO https://github.com/Coffey-Labs/stalwart-migrator/releases/latest/download/stalwart-migrate-linux-$ARCH.tar.gz
|
||||
curl -fsSLO https://github.com/Coffey-Labs/stalwart-migrator/releases/latest/download/SHA256SUMS
|
||||
curl -fsSLO https://git.coffeylabs.org/coffey-labs/stalwart-migrator/releases/download/latest/stalwart-migrate-linux-$ARCH.tar.gz
|
||||
curl -fsSLO https://git.coffeylabs.org/coffey-labs/stalwart-migrator/releases/download/latest/SHA256SUMS
|
||||
sha256sum --ignore-missing -c SHA256SUMS
|
||||
tar -xzf stalwart-migrate-linux-$ARCH.tar.gz
|
||||
sudo install -m 0755 stalwart-migrate /usr/local/bin/
|
||||
|
||||
Reference in New Issue
Block a user