Skip to content

Commit 8f38e6c

Browse files
committed
feat: add deploy docs action
1 parent 69d2eec commit 8f38e6c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Rebuild docs
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*' # matches v1.0.0, v2.3.4, etc.
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Trigger Deploy Hook
13+
run: curl -X POST "$CF_DEPLOY_HOOK_URL"
14+
env:
15+
CF_DEPLOY_HOOK_URL: ${{ secrets.CF_DEPLOY_HOOK_URL }}

0 commit comments

Comments
 (0)