Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified .github/dependabot.yml
100644 → 100755
Empty file.
5 changes: 5 additions & 0 deletions .github/reto_1/hola_mundo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
def hello_world():
print("Hello Alex Ferreira")

if __name__ == '__main__':
hello_world()
2 changes: 1 addition & 1 deletion .github/script/STEP
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0
1
8 changes: 8 additions & 0 deletions .github/workflows/ hola-mundo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: hola-mundo
on: [push]
jobs:
hola-mundo:
runs-on: ubuntu-latest
steps:
- name: Hola mundo
run: python reto_1/hola_mundo.py
Empty file modified .github/workflows/0-inicio.yml
100644 → 100755
Empty file.
Empty file modified .github/workflows/1-crea-primer-workflow.yml
100644 → 100755
Empty file.
Empty file modified .github/workflows/2-conoce-triggers.yml
100644 → 100755
Empty file.
Empty file modified .github/workflows/3-aprende-expresiones.yml
100644 → 100755
Empty file.
Empty file modified .github/workflows/4-usa-contextos.yml
100644 → 100755
Empty file.
Empty file modified .github/workflows/5-uso-variables.yml
100644 → 100755
Empty file.
12 changes: 12 additions & 0 deletions .github/workflows/hola-mundo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: hola-mundo
on:
push:
branches: [ "aprendiendo-github-actions" ]
jobs:
hola-mundo:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Hola mundo
run: python .github/reto_1/hola_mundo.py
Empty file modified .gitignore
100644 → 100755
Empty file.
Empty file modified LICENSE
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ _Aprende los conceptos básicos para crear tu primer flujo de CI/CD para tus pro
Do not use quotes on the <details> tag attributes.
-->

<details id=0 open>
<details id=0>
<summary><h2>Bienvenido</h2></summary>

¡Bienvenido al Curso Básico de GitHub Actions de Platzi! en este curso aprenderás a realizar flujos de Integración y Despliegue Continúo (CI/CD) para tus proyectos personales, así como automatizar cualquier proceso que que te ayude a impulsar tu flujo de trabajo :rocket:.
Expand Down Expand Up @@ -52,7 +52,7 @@ _Aprende los conceptos básicos para crear tu primer flujo de CI/CD para tus pro
TBD-step-1-notes.
-->

<details id=1>
<details id=1 open>
<summary><h2>Paso 1: Crea tu primer workflow file</h2></summary>

_¡Bienvenido al "Curso Básico de GitHub Actions"! :wave:_
Expand Down