diff --git a/Sources/Action.swift b/Sources/Action.swift index a4602ce..ec79947 100644 --- a/Sources/Action.swift +++ b/Sources/Action.swift @@ -1,6 +1,6 @@ // // Action.swift -// +// // // Created by Asiel Cabrera Gonzalez on 5/18/23. // @@ -13,6 +13,8 @@ struct Action { static func main() async { let myInput = try! Core.getInput("myinput") print(myInput) + + Core.setOutput(name: "myOutput", value: "testing frase from output") } }