Fix filemanager permissions (#508)

* Fix filemanager permissions

* fix filemanager permissions

* fix tests warning
This commit is contained in:
Saeed Vaziry
2025-02-26 20:46:07 +01:00
committed by GitHub
parent e17fdbb1a0
commit 3bf3f7eebc
12 changed files with 56 additions and 55 deletions

21
docker/publish.sh Normal file
View File

@ -0,0 +1,21 @@
#!/bin/bash
TAG=$1
if [ -z "$TAG" ]; then
echo "No tag provided"
exit 1
fi
rm -rf /tmp/vito
git clone git@github.com:vitodeploy/vito.git /tmp/vito
cd /tmp/vito || exit
docker buildx build . \
-f docker/Dockerfile \
-t vitodeploy/vito:"$TAG" \
--platform linux/amd64,linux/arm64 \
--no-cache \
--push