Skip to content

Commit 31d729a

Browse files
committed
Add auto-deploy to Hatchbox on push to main
1 parent 8f10260 commit 31d729a

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Deploy to Hatchbox
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: hatchboxio/github-hatchbox-deploy-action@v2
14+
with:
15+
deploy_key: ${{ secrets.HATCHBOX_DEPLOY_KEY }}

0 commit comments

Comments
 (0)