Skip to content

Commit

Permalink
Update ejercicio4.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
EperezStemdo authored May 1, 2024
1 parent 2ce6428 commit 7226c35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ejercicio4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ jobs:
resultado=0
if [[ "$inputs.operacion" == '+' ]]; then
echo ${{ inputs.valor1 }}
echo ${{ inputs.valor2 }}
resultado=$((inputs.valor1 + inputs.valor2))
resultado=${{ inputs.valor1 + inputs.valor2 }}
fi
if [[ "$inputs.operacion" == "-" ]]; then
Expand Down

0 comments on commit 7226c35

Please sign in to comment.