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
2 changes: 1 addition & 1 deletion .github/script/STEP
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0
2
17 changes: 17 additions & 0 deletions .github/workflows/hola-mundo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Aprendiendo GitHub Actions
run-name: Aprendiendo GitHub Actions!!!
on: [push]
jobs:
hola-mundo:
runs-on: windows-latest
steps:
- name: Setup Node.js environment
uses: actions/setup-node@v5.0.0
with:
node-version: '22.18.0'
- name: Checkout
uses: actions/checkout@v3
- name: Definir variable
run: echo "USERNAME=${{ github.actor }}" >> $GITHUB_ENV
- name: Correr script
run: node hola_mundo.js
4 changes: 2 additions & 2 deletions README.md
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 @@ -131,7 +131,7 @@ Primero, aprenderemos los conceptos básicos de GitHub Actions
TBD-step-2-notes.
-->

<details id=2>
<details id=2 open>
<summary><h2>Paso 2: Conoce los principales Triggers</h2></summary>

_¡Creaste tu primer Workflow! :tada:_
Expand Down
1 change: 1 addition & 0 deletions hola_mundo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('hola mundo');