Skip to content

Commit

Permalink
chore: added build hook to trigger docs deployment on new tag release
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-solanki committed Jan 1, 2023
1 parent e1e6b2c commit 8cea48b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Deploy docs

on:
push:
tags:
- "v*.*.*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Make POST request to trigger build
- run: curl -X POST -d {} ${{ secrets.BUILD_HOOK_URL }}

0 comments on commit 8cea48b

Please sign in to comment.