Last active
April 24, 2017 23:55
-
-
Save erikfloresq/c0e8baa8115ed163fc0971e57d36dbc3 to your computer and use it in GitHub Desktop.
Instalación de varios certificates y provisioning profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Colocamos una descripción para nuestro lane | |
desc "Generando Certificados para Weriklandia" | |
# iniciamos nuestro lane con el nombre certificate | |
lane :certificate do | |
# instalamos provising profile de desarrollo | |
match( | |
type: "development" | |
) | |
# instalamos provising profile para ad-hoc | |
match( | |
type: "adhoc" | |
) | |
# instalamos provising profile para publicacion a tienda | |
match( | |
type: "appstore" | |
) | |
# avisamos al canal #iosteam que el lane a terminado | |
slack( | |
slack_url: "https://hooks.slack.com/services/*******", | |
message: "Se instalaron los certificados 🎉 😎", | |
channel: "#iosteam" | |
) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment