Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
asielcabrera authored May 11, 2023
1 parent 71d7ace commit 63f4303
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

name: Ejecutar aplicación de línea de comandos Swift
description: Esta acción ejecuta una aplicación de línea de comandos Swift

Expand All @@ -19,12 +18,19 @@ runs:
# Si estás en macOS, puedes usar el siguiente comando para instalar Swift
# brew install swift
# - name: Clonar repositorio
# run: |
# git clone https://github.com/tu-usuario/tu-repositorio.git
# Opcionalmente, puedes copiar tu código Swift directamente aquí en lugar de clonar un repositorio
shell: bash

- name: Clonar repositorio
run: |
git clone https://github.com/asielcabrera/Test_Github_Action.git
# Opcionalmente, puedes copiar tu código Swift directamente aquí en lugar de clonar un repositorio

shell: bash

- name: Compilar y ejecutar
run: |
run: |
cd Test_Github_Action
swift build
.build/debug/Test_Github_Action ${{ inputs.arguments }}
shell: bash

0 comments on commit 63f4303

Please sign in to comment.