Skip to content

Commit 5149551

Browse files
committed
updated to latest go version in deploy doc
1 parent 6899474 commit 5149551

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

apps/deploy-app.mdx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ Add a GitHub Actions workflow to your repository for automatic deployments.
2424

2525
Create `.github/workflows/ci-modus-build.yml`:
2626

27+
<Note>
28+
This workflow can stray out of date as new Golang releases are made. If you
29+
encounter issues, checkout our [open source recipes
30+
repo](https://github.com/hypermodeinc/modus-recipes/blob/main/.github/workflows/build.yml).
31+
</Note>
32+
2733
```yaml
2834
name: ci-modus-build
2935

@@ -47,12 +53,12 @@ jobs:
4753
- name: Setup Go
4854
uses: actions/setup-go@v5
4955
with:
50-
go-version: "1.23.1"
56+
go-version: "1.24.4"
5157

5258
- name: Setup TinyGo
5359
uses: acifani/setup-tinygo@v2
5460
with:
55-
tinygo-version: "0.34.0"
61+
tinygo-version: "0.38.0"
5662

5763
- name: Build project
5864
run: npx -p @hypermode/modus-cli -y modus build

0 commit comments

Comments
 (0)