Skip to content

Commit 81ef5f7

Browse files
committed
Convierte en sitio de Quarto
1 parent f370c4c commit 81ef5f7

File tree

4 files changed

+57
-0
lines changed

4 files changed

+57
-0
lines changed

.github/workflows/quarto-publish.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Quarto Publish
2+
3+
on:
4+
push:
5+
branches:
6+
- main # Change this if your default branch is different, e.g., master
7+
8+
jobs:
9+
build-deploy:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v2
15+
16+
- name: Setup Quarto
17+
uses: quarto-dev/quarto-actions/setup@v2
18+
with:
19+
version: 'latest'
20+
21+
- name: Setup Pandoc
22+
uses: JamesIves/[email protected]
23+
24+
- name: Render Quarto site
25+
run: quarto render
26+
27+
- name: Deploy to GitHub Pages
28+
uses: peaceiris/actions-gh-pages@v3
29+
with:
30+
github_token: ${{ secrets.GITHUB_TOKEN }}
31+
publish_dir: ./docs # This should be your Quarto output directory

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,7 @@
2222
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2323
hs_err_pid*
2424
replay_pid*
25+
26+
/.quarto/
27+
28+
_site

_quarto.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
project:
2+
type: website
3+
4+
website:
5+
title: "Java Coding Challenges"
6+
navbar:
7+
left:
8+
- text: "Home"
9+
href: index.qmd
10+
- text: "Weeks 1-2"
11+
href: Week1-2_Beginner.md
12+
- text: "Weeks 3-4"
13+
href: Week3-4_Intermediate.md
14+
- text: "Weeks 5-6"
15+
href: Week5-6_Advanced.md
16+
- text: "Weeks 7-8"
17+
href: Week7-8_AdvancedPrep.md
18+
19+
format:
20+
html:
21+
theme: default

index.qmd

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
README.md

0 commit comments

Comments
 (0)