-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (40 loc) · 1.57 KB
/
run_pipeline.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Proyecto HT.BUSCADOR
run-name: ${{ github.actor }} está generando tabla interactiva HT 🎙️🎬
on: [push]
jobs:
HT-BUSCADOR:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
env:
SPOTIPY_CLIENT_ID: ${{ secrets.SPOTIPY_CLIENT_ID }}
SPOTIPY_CLIENT_SECRET: ${{ secrets.SPOTIPY_CLIENT_SECRET }}
SPOTIPY_REFRESH_TOKEN: ${{ secrets.SPOTIPY_REFRESH_TOKEN }}
steps:
- run: echo "🎉 Tareas activadas automáticamente debido a un evento ${{ github.event_name }}"
- run: echo "🐧 Las tareas están corriendo en un servidor ${{ runner.os }} alojado en GitHub"
- run: echo "🔎 El nombre del branch es ${{ github.ref }} y el repositorio es ${{ github.repository }}"
- name: Verificar el código del repositorio
uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: ht.buscador
environment-file: environment.yml
auto-activate-base: false
- name: Cambio locale
run: |
sudo locale-gen es_ES.UTF-8
sudo update-locale LANG=es_ES.UTF-8
- name: Creo sitio web
run: scripts/principal.bash
- name: Configuro git en el runner
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub"
- name: Commit de los cambios en el repositorio
run: |
git add .
git commit -m "sitio web actualizado"
git push origin main
- run: echo "✅ El estado final es = ${{ job.status }}."