-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cambio titulo en la pagina 404 y rebuildeo
- Loading branch information
Showing
10 changed files
with
33 additions
and
314 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# .github/workflows/deploy.yml | ||
|
||
name: Deploy to GitHub Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- master # Reemplaza con tu rama principal | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18.x' # Reemplaza con la versión de Node.js que uses | ||
|
||
- name: Install Dependencies | ||
run: npm ci # Asumiendo que usas npm | ||
|
||
- name: Build Project | ||
run: npm run deploy # Comando para construir tu proyecto | ||
|
||
- name: Deploy to GitHub Pages | ||
uses: actions/jekyll-build-pages@v1 | ||
with: | ||
source: ./dist/fe-portfolio # Ruta fuente desde la raíz del repositorio | ||
destination: ./_site # Carpeta destino para los archivos generados |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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