Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 7 additions & 14 deletions apps/deploy-app.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -82,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:
Expand Down