Update README.md #18
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy MechMind Site | |
| on: | |
| push: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest # Cambiado a runner oficial | |
| steps: | |
| - uses: actions/checkout@v4 # Paso 1: Checkout del código | |
| - name: Build Site # Paso 2: Build | |
| run: | # Añadido 'run' aquí | |
| echo "🚀 Construyendo sitio MechMind..." | |
| # Aquí puedes añadir comandos de build si necesitas | |
| echo "✅ Build completado" | |
| - name: Deploy to GitHub Pages | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./ # Publica desde la raíz |