We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d9a83f commit 7bbd61eCopy full SHA for 7bbd61e
1 file changed
.github/workflows/hatchbox-deploy.yml
@@ -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