fix: deploy workflow clones wrong repo and runs swapoff #609
@@ -98,14 +98,15 @@ jobs:
|
||||
echo 'Cleaning Docker build cache...'
|
||||
docker builder prune -af 2>/dev/null || true
|
||||
docker image prune -af 2>/dev/null || true
|
||||
sudo swapoff -a && sudo swapon -a 2>/dev/null || true
|
||||
free -m | head -3
|
||||
|
||||
echo 'Pulling source...'
|
||||
if [ ! -d $SOURCE_DIR/.git ]; then
|
||||
git clone -b $BRANCH https://git.mokoconsulting.tech/MokoConsulting/MokoGitea.git $SOURCE_DIR
|
||||
git clone -b $BRANCH https://git.mokoconsulting.tech/MokoConsulting/MokoGitea-APP.git $SOURCE_DIR
|
||||
fi
|
||||
cd $SOURCE_DIR
|
||||
# Ensure remote points to MokoGitea-APP (not the upstream fork)
|
||||
git remote set-url origin https://git.mokoconsulting.tech/MokoConsulting/MokoGitea-APP.git 2>/dev/null || true
|
||||
git fetch origin $BRANCH
|
||||
git reset --hard origin/$BRANCH
|
||||
|
||||
|
||||
+16
-1
@@ -3,7 +3,22 @@
|
||||
|
||||
## [06.14.00] --- 2026-06-11
|
||||
|
||||
## [06.14.00] --- 2026-06-11
|
||||
* FIXES
|
||||
* fix: return 404 for update feeds when update server is disabled (#589, PR #599)
|
||||
* fix(ui): raw file button opens in new tab with rel="noopener noreferrer" (#581, PR #600)
|
||||
* fix: update server feed generation bugs (#601, PR #605)
|
||||
* default targetplatform changed from `(5|6)\\..*` to `6\\..*` for Joomla 6 compat
|
||||
* `<client>` element changed from string to numeric `0`/`1`
|
||||
* pre-release version suffix number preserved (e.g. `-rc2` not `-rc`)
|
||||
* feed generator uses `FullElementName()` for auto-constructed element names
|
||||
* fix: wiki API sub-page support and content response (#606, #607, PR #608)
|
||||
* wiki routes use wildcard to support pages with path separators
|
||||
* `ListWikiPages` returns pages in subdirectories
|
||||
* error logging for empty content_base64 responses
|
||||
* fix: remove `swapoff -a` from deploy workflow that caused MySQL crashes
|
||||
|
||||
* MCP
|
||||
* metadata update tool now exposes element_name, display_name, description, license_name, language fields
|
||||
|
||||
|
||||
All notable changes to MokoGitea are documented here. Versions follow the format
|
||||
|
||||
Reference in New Issue
Block a user