From 3fbc6acbb727c60603fabf567cf631abb598cdae Mon Sep 17 00:00:00 2001 From: Matt Johnson-Pint Date: Fri, 11 Jul 2025 21:57:25 -0700 Subject: [PATCH 1/3] update app workflow --- apps/deploy-app.mdx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/apps/deploy-app.mdx b/apps/deploy-app.mdx index e1ed915e..b9b14bcb 100644 --- a/apps/deploy-app.mdx +++ b/apps/deploy-app.mdx @@ -53,7 +53,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: "1.24.4" + go-version: "1.24.5" - name: Setup TinyGo uses: acifani/setup-tinygo@v2 @@ -62,6 +62,12 @@ jobs: - name: Build project run: npx -p @hypermode/modus-cli -y modus build + + - name: Publish GitHub artifact + uses: actions/upload-artifact@v4 + with: + name: build + path: ./build/* ``` Once the workflow is added, **any push to the `main` branch automatically From ed7b3121889e36bb911b2ca8cbde6f1d654bb6d3 Mon Sep 17 00:00:00 2001 From: Matt Johnson-Pint Date: Fri, 11 Jul 2025 21:58:36 -0700 Subject: [PATCH 2/3] remove fake output --- apps/deploy-app.mdx | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/apps/deploy-app.mdx b/apps/deploy-app.mdx index b9b14bcb..4a68f516 100644 --- a/apps/deploy-app.mdx +++ b/apps/deploy-app.mdx @@ -88,19 +88,6 @@ The deployment automatically: 2. Deploys to your Hypermode endpoint 3. Makes your functions available via GraphQL -Deployment output: - -```text -🚀 Deployment started for commit abc123d -📦 Building application... -✓ Functions compiled successfully -🌐 Deploying to production... -✓ Health checks passed -🎉 Deployment complete! - -Endpoint: https://my-modus-app-my-workspace-hurx1.hypermode.app/graphql -``` - ## Production features Your deployed app includes: From 0593a612a0a564740a98e3aacf0eb4426fd42e7a Mon Sep 17 00:00:00 2001 From: Matt Johnson-Pint Date: Fri, 11 Jul 2025 22:02:16 -0700 Subject: [PATCH 3/3] add retention days Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- apps/deploy-app.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/deploy-app.mdx b/apps/deploy-app.mdx index 4a68f516..5a2f4cf5 100644 --- a/apps/deploy-app.mdx +++ b/apps/deploy-app.mdx @@ -68,6 +68,7 @@ jobs: with: name: build path: ./build/* + retention-days: 7 ``` Once the workflow is added, **any push to the `main` branch automatically