Skip to content

Commit e848809

Browse files
committed
Start workflow
1 parent e8b4ad8 commit e848809

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/deploy-to-aws.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Deploy site to AWS
2+
3+
on: push
4+
5+
jobs:
6+
deploy:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout repo
10+
uses: actions/checkout@v4
11+
12+
- name: Setup node
13+
uses: actions/setup-node@v4
14+
with:
15+
node-version: '16'
16+
17+
- name: Install dependencies
18+
uses: pnpm/action-setup@v4
19+
with:
20+
run_install: true
21+
22+
- name: Build site
23+
run: pnpm run build

0 commit comments

Comments
 (0)