Compare commits
2 Commits
3ca5d76682
...
06bd717dfb
Author | SHA1 | Date |
---|---|---|
antifallobst | 06bd717dfb | |
antifallobst | 2a3fa4f2fc |
|
@ -18,7 +18,7 @@ jobs:
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Cache Docker layers
|
- name: Cache Docker layers
|
||||||
uses: https://github.com/actions/cache@v3
|
uses: https://github.com/actions/cache/restore@v3
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
/tmp/.buildx-cache
|
/tmp/.buildx-cache
|
||||||
|
@ -42,12 +42,12 @@ jobs:
|
||||||
push: true
|
push: true
|
||||||
tags: git.nerdcult.net/nerdcult/nerdcult_admin_worker:latest
|
tags: git.nerdcult.net/nerdcult/nerdcult_admin_worker:latest
|
||||||
cache-from: type=local,src=/tmp/.buildx-cache
|
cache-from: type=local,src=/tmp/.buildx-cache
|
||||||
cache-to: type=local,dest=/tmp/.buildx-cache-new
|
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
|
||||||
|
|
||||||
- name: Rotate the cache
|
- name: Rotate the cache
|
||||||
run: |
|
run: |
|
||||||
rm -rf /tmp/.buildx-cache
|
rm -rvf /tmp/.buildx-cache
|
||||||
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
|
mv -v /tmp/.buildx-cache-new /tmp/.buildx-cache
|
||||||
|
|
||||||
- name: Deploy
|
- name: Deploy
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
use crate::backend::backup;
|
use crate::backend::backup;
|
||||||
use anyhow::{bail, Context, Error, Result};
|
use anyhow::{bail, Context, Result};
|
||||||
use log::{error, info};
|
use log::{error, info};
|
||||||
use sqlx::SqlitePool;
|
use sqlx::SqlitePool;
|
||||||
use std::fs::{create_dir_all, remove_dir_all, File};
|
use std::fs::{create_dir_all, remove_dir_all, File};
|
||||||
|
@ -70,6 +70,7 @@ fn perform_backup(backup: backup::Backup) -> Result<()> {
|
||||||
.arg("all")
|
.arg("all")
|
||||||
.env("MAILCOW_BACKUP_LOCATION", &tmp)
|
.env("MAILCOW_BACKUP_LOCATION", &tmp)
|
||||||
.env("PATH", "/bin:/usr/bin:/host/usr/bin")
|
.env("PATH", "/bin:/usr/bin:/host/usr/bin")
|
||||||
|
.current_dir(&dir)
|
||||||
.status()?;
|
.status()?;
|
||||||
|
|
||||||
if !status.success() {
|
if !status.success() {
|
||||||
|
|
Loading…
Reference in New Issue