Warning
You're browsing the documentation for an old version of Webiny. Consider upgrading your project to Webiny 5.39.x.
Can I Use This?

Build-related hooks outlined in this guide are available since Webiny v5.20.0, while deploy-related ones are available already since Webiny v5.0.0.

What you’ll learn
  • how to run custom code before and after build and deploy steps

Introduction
anchor

Internally, the webiny deploy command consists of two steps:

  1. build - within this step, your application code gets compiled and is made ready for deployment
  2. deploy - within this step, the compiled code, along with the defined cloud infrastructure resources gets deployed

To deploy necessary cloud infrastructure, by default, Webiny relies on Pulumi, a modern infrastructure as code framework. Find out more in the following IaC with Pulumi key topic.

In some cases, it might be necessary to run some code before or after build or deployment. For example, you may want to add some additional logging or validation.

This is why the webiny deploy command enables hooking onto a couple of its key lifecycle events:

  1. pre-build
  2. post-build
  3. pre-deploy
  4. post-deploy

The following diagram shows in which order these lifecycle events are triggered:

webiny deploy Command's Lifecycle Eventswebiny deploy Command's Lifecycle Events
(click to enlarge)

We can hook onto any of these events via a dedicated plugin type, which we cover in the following section.

Creating a Hook
anchor

The following code demonstrates all of the plugin types we can use in order to hook onto the command’s key lifecycle events. We are defining them within the cli.pluginsexternal link section of the object exported from the root webiny.project.tsexternal link file.

webiny.project.ts

FAQ
anchor

Can I Define My Plugin in a Separate File and Simply Import It in thewebiny.project.tsFile?
anchor

Yes, you can and that’s probably the best way to do it because the webiny.project.ts file will be easier to read.