Skip to content

Commit 7bbd61e

Browse files
committed
Actions: New Hatchbox workflow
1 parent 4d9a83f commit 7bbd61e

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
# Deploy the OSS demo/production Hatchbox app when a release tag is pushed.
3+
# Add HATCHBOX_DEPLOY_KEY to repo secrets (App → Repository tab in Hatchbox.io).
4+
name: Hatchbox Deploy
5+
6+
on:
7+
push:
8+
tags:
9+
- "v*.*.*"
10+
11+
jobs:
12+
deploy:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Deploy to Hatchbox
16+
uses: hatchboxio/github-hatchbox-deploy-action@v2
17+
with:
18+
deploy_key: ${{ secrets.HATCHBOX_DEPLOY_KEY }}
19+
sha: ${{ github.sha }}

0 commit comments

Comments
 (0)