fix: Add --set-upstream flag to git push in Docker workflow

- Fixes 'current branch main has no upstream branch' error
- Ensures push works after fetching main branch in detached HEAD state
- Completes the README update automation

🤖 Generated with Claude Code
This commit is contained in:
Patryk Ciechanski
2025-06-12 13:23:18 +02:00
parent 58ff3c1734
commit 07d9b3be4a

View File

@@ -187,7 +187,7 @@ jobs:
fi
# Push changes back to the repository
git push
git push --set-upstream origin main
echo "### 📝 Documentation Updated" >> $GITHUB_STEP_SUMMARY
echo "README.md and user guides have been automatically updated with the new Docker image tag: \`$LATEST_TAG\`" >> $GITHUB_STEP_SUMMARY