Merge branch '1.9.x' into feat-public-project-policies

This commit is contained in:
Matej Bačo
2026-04-22 09:57:48 +02:00
194 changed files with 3464 additions and 1552 deletions
+4 -1
View File
@@ -693,7 +693,10 @@ jobs:
- name: Installing latest version
run: |
rm .env
curl https://appwrite.io/install/env -o .env
LATEST_TAG=$(curl -fsSL -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/appwrite/appwrite/releases/latest | jq -r .tag_name)
echo "Latest release tag: $LATEST_TAG"
curl -fsSL "https://raw.githubusercontent.com/appwrite/appwrite/${LATEST_TAG}/docker-compose.yml" -o docker-compose.yml
curl -fsSL "https://raw.githubusercontent.com/appwrite/appwrite/${LATEST_TAG}/.env" -o .env
sed -i 's/_APP_OPTIONS_ABUSE=enabled/_APP_OPTIONS_ABUSE=disabled/g' .env
docker compose up -d
sleep 10