We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39d83c8 commit 48a14e9Copy full SHA for 48a14e9
src/runway/models/project.cr
@@ -51,6 +51,7 @@ class Project
51
# Check if the desired event type had a deployable event occur
52
payload = @events[event.uuid].check_for_event
53
@log.debug { "deployment event triggered from event.type #{event.type} for #{@name} - event.uuid #{event.uuid}" } if payload.ship_it?
54
+ @log.info { Emoji.emojize(":astronaut: deploying #{@name}#{payload.environment ? " to #{payload.environment}" : ""}!") } if payload.ship_it?
55
56
# If the event was triggered, run the project's deployment configuration
57
payload = @deployment.deploy(payload).not_nil! if payload.ship_it?
0 commit comments