File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -49,13 +49,13 @@ jobs:
49
49
50
50
- name : Renderizar el Rmd
51
51
run : |
52
- Rscript -e "rmarkdown::render('00_data_validation.Rmd')"
52
+ Rscript -e "rmarkdown::render('00_data_validation.Rmd', output_file = 'index.html' )"
53
53
54
54
- name : Subir reporte como artefacto
55
55
uses : actions/upload-artifact@v4
56
56
with :
57
57
name : reporte-html
58
- path : 00_data_validation .html
58
+ path : index .html
59
59
if-no-files-found : error
60
60
61
61
- name : Notificar a Discord
64
64
-X POST \
65
65
-d "{\"content\":\"✅ Reporte generado automáticamente el día $(date -u +'%Y-%m-%d %H:%M UTC') para el repo \`${{ github.repository }}\`.\"}" \
66
66
${{ secrets.DISCORD_WEBHOOK_URL }}
67
+
68
+ - name : Publicar en GitHub Pages
69
+ uses : peaceiris/actions-gh-pages@v3
70
+ with :
71
+ github_token : ${{ secrets.GITHUB_TOKEN }}
72
+ publish_dir : ./
73
+ publish_branch : gh-pages
74
+ force_orphan : true
You can’t perform that action at this time.
0 commit comments