Skip to content

Desktop: anadir MSI para implantacion gestionada (WiX 5) #62

Desktop: anadir MSI para implantacion gestionada (WiX 5)

Desktop: anadir MSI para implantacion gestionada (WiX 5) #62

Workflow file for this run

name: Pages
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: pages-${{ github.ref }}
cancel-in-progress: true
jobs:
build-site:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.12"
- run: python -m pip install PyYAML markdown
- run: python scripts/generate_site.py
- run: test -s site/index.html
- run: test -s site/data/catalog.json
- run: test -s site/classes/001.html
- run: test -s site/classes/183.html
- run: test -s site/classes/part-14.html
- run: test -s site/data/papers.json
- run: test -s site/papers/index.html
- run: test -s site/papers/P08_transformer.html
- run: test -s site/papers/guia-fuentes-y-venues.html
- run: test -s site/papers/anexo-a04-atencion-paso-a-paso.html
- run: test -s site/papers/P22_deepseek_r1.html
- if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5.0.0
with:
path: site
deploy:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
needs: build-site
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5.0.0