Skip to content

Commit 294494e

Browse files
committed
Add cd workflow
1 parent d826f7f commit 294494e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/cd.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: cd
2+
3+
on:
4+
push:
5+
branches: [main]
6+
7+
jobs:
8+
deploy:
9+
name: Deploy
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Check out code
14+
uses: actions/checkout@v4
15+
16+
- name: Set up go
17+
uses: actions/setup-go@v5
18+
with:
19+
go-version: "1.25.1"
20+
21+
- name: Build notely
22+
run: scripts/buildprod.sh

0 commit comments

Comments
 (0)