mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-15 20:25:23 +02:00
- Re-enabled the steps to commit the generated OpenAPI specification to the website repository. - Improved checks for changes in the OpenAPI spec before committing. - Enhanced commit message formatting for clarity and added a timestamp to the commit.
86 lines
2.8 KiB
YAML
86 lines
2.8 KiB
YAML
name: Generate and Sync OpenAPI
|
|
|
|
on:
|
|
# Se ejecuta cuando hay cambios en los routers de la API
|
|
push:
|
|
branches:
|
|
- feat/sync-open-api-website-docs
|
|
# paths:
|
|
# - 'apps/dokploy/server/api/routers/**'
|
|
# - 'packages/server/src/services/**'
|
|
# - 'packages/server/src/db/schema/**'
|
|
# Permite ejecución manual
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
generate-and-commit:
|
|
name: Generate OpenAPI and commit to Dokploy repo
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Dokploy repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
- uses: pnpm/action-setup@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20.16.0
|
|
cache: "pnpm"
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Generate OpenAPI specification
|
|
run: |
|
|
pnpm generate:openapi
|
|
|
|
# Verifica que se generó correctamente
|
|
if [ ! -f openapi.json ]; then
|
|
echo "❌ openapi.json not found"
|
|
exit 1
|
|
fi
|
|
|
|
echo "✅ OpenAPI specification generated successfully"
|
|
|
|
- name: Sync to website repository
|
|
run: |
|
|
# Clona el repositorio de website
|
|
git clone https://x-access-token:${{ secrets.DOCS_SYNC_TOKEN }}@github.com/dokploy/website.git website-repo
|
|
|
|
cd website-repo
|
|
|
|
# Copia el openapi.json al website
|
|
mkdir -p public
|
|
cp ../openapi.json public/openapi.json
|
|
|
|
# Configura git
|
|
git config user.name "Dokploy Bot"
|
|
git config user.email "bot@dokploy.com"
|
|
|
|
# Verifica si hay cambios
|
|
if git diff --quiet public/openapi.json; then
|
|
echo "📝 No changes detected in website repo"
|
|
exit 0
|
|
fi
|
|
|
|
# Commitea y pushea
|
|
git add public/openapi.json
|
|
git commit -m "chore: sync OpenAPI specification [skip ci]" \
|
|
-m "Source: ${{ github.repository }}@${{ github.sha }}" \
|
|
-m "Updated: $(date -u +'%Y-%m-%d %H:%M:%S UTC')"
|
|
git push
|
|
|
|
echo "✅ OpenAPI synced to website successfully"
|
|
continue-on-error: true
|
|
|
|
- name: Create summary
|
|
run: |
|
|
echo "## 📊 OpenAPI Sync Summary" >> $GITHUB_STEP_SUMMARY
|
|
echo "" >> $GITHUB_STEP_SUMMARY
|
|
echo "- **Repository:** \`${{ github.repository }}\`" >> $GITHUB_STEP_SUMMARY
|
|
echo "- **Commit:** \`${{ github.sha }}\`" >> $GITHUB_STEP_SUMMARY
|
|
echo "- **Trigger:** \`${{ github.event_name }}\`" >> $GITHUB_STEP_SUMMARY
|
|
echo "- **Target:** \`dokploy/website\`" >> $GITHUB_STEP_SUMMARY
|
|
echo "- **Status:** ✅ Success" >> $GITHUB_STEP_SUMMARY
|
|
|