> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Site published

> Starts when the site or one of its pages is published.

`webflow.onSitePublished` starts when the site or one of its pages is published.

## Example

```ts automations/webflow-on-site-published.automation.ts theme={null}
import { automation } from "automate.ax"
import { webflow } from "automate.ax/webflow"

export default automation("Site published", () => {
  webflow.onSitePublished({ siteId: "site-id" })
})
```

## Inputs

`siteId` is the Webflow site to watch. You can pass `account` to select a named Webflow account. The connection needs `sites:write` to manage the provider webhook and the read scope for this event.

## Output

Returns the published domains, publisher identity, timestamp, site ID, and publish scope when Webflow supplies it. Each authenticated delivery starts an ordinary root context.
