-
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.
Merge pull request #2 from LaJaqueria/dev
Primera version de la web con tests para el build
- Loading branch information
Showing
1 changed file
with
65 additions
and
13 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 |
---|---|---|
@@ -1,29 +1,81 @@ | ||
name: ci | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
name: Publicar documentacion | ||
|
||
on: push | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
deploy: | ||
test: | ||
name: π§ͺ Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Configure Git Credentials | ||
|
||
- name: π Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: βοΈ Configurar Credenciales de Git | ||
run: | | ||
git config user.name github-actions[bot] | ||
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | ||
- uses: actions/setup-python@v5 | ||
- name: βοΈ Preparar Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
|
||
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV | ||
- uses: actions/cache@v4 | ||
|
||
- name: βοΈ Preparar Python MkDocs Material | ||
uses: actions/cache@v4 | ||
with: | ||
key: mkdocs-material-${{ env.cache_id }} | ||
path: .cache | ||
restore-keys: | | ||
mkdocs-material- | ||
- run: pip install-r requirements.txt | ||
- run: mkdocs gh-deploy --force | ||
- name: π₯ Instalar Dependencias | ||
run: pip install -r requirements.txt | ||
|
||
- name: π οΈ Build de la documentacion | ||
working-directory: ./website | ||
run: mkdocs build | ||
|
||
|
||
|
||
despliegue: | ||
name: π Publicar | ||
runs-on: ubuntu-latest | ||
needs: test | ||
if: github.ref == 'refs/heads/main' | ||
steps: | ||
|
||
- name: π Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: βοΈ Configurar Credenciales de Git | ||
run: | | ||
git config user.name github-actions[bot] | ||
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | ||
- name: βοΈ Preparar Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
|
||
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV | ||
|
||
- name: βοΈ Preparar Python MkDocs Material | ||
uses: actions/cache@v4 | ||
with: | ||
key: mkdocs-material-${{ env.cache_id }} | ||
path: .cache | ||
restore-keys: | | ||
mkdocs-material- | ||
- name: π₯ Instalar Dependencias | ||
run: pip install -r requirements.txt | ||
|
||
- name: π Publicar documentacion | ||
working-directory: ./website | ||
run: mkdocs gh-deploy --force |