diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index b8c6dc0983f..9109333a2da 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -38,12 +38,11 @@ jobs: # not the official version, so be careful when updating - name: Deploy to Cloudflare Pages - uses: AdrianGonz97/refined-cf-pages-action@f026b5a7c0cb4a05ecb63871c5fc4992cf036d7f + # Replace this with the main commit when this lands + uses: AdrianGonz97/refined-cf-pages-action@fix/deploy-prod-on-workflow_run with: apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} projectName: 'qwik-docs' directory: packages/docs/dist githubToken: ${{ secrets.GITHUB_TOKEN }} - # force production when running on main - branch: ${{ (github.event.workflow_run.head_branch == 'main' && 'main') || '' }} diff --git a/packages/docs/src/routes/docs/(qwik)/advanced/containers/index.mdx b/packages/docs/src/routes/docs/(qwik)/advanced/containers/index.mdx index 04394caf388..c7a7467d627 100644 --- a/packages/docs/src/routes/docs/(qwik)/advanced/containers/index.mdx +++ b/packages/docs/src/routes/docs/(qwik)/advanced/containers/index.mdx @@ -10,7 +10,7 @@ contributors: - mhevery - bab2683 - mrhoodz -updated_at: '2023-08-23T23:06:42Z' +updated_at: '2023-08-23T23:06:41Z' created_at: '2023-03-20T23:45:13Z' --- @@ -19,7 +19,14 @@ created_at: '2023-03-20T23:45:13Z' Every Qwik application is contained inside a element, usually the `` element. This element becomes the container for the application. The container is the root element for the application and all components, state and events are contained within. ```html - + ... ``` @@ -39,7 +46,7 @@ renderToStream(, { The code above will render the following HTML: ```html - + ... ``` @@ -68,12 +75,12 @@ Since the runtime ensures isolation across containers, several containers can co Containers can be nested in a tree and can communicate and share data. The inter-component communication requires that the components have well-defined boundaries, which we call container protocols. ```html - + My Qwik Application -
+

This is a header form a container