Browse Source

Add Github Action to deploy docs on markdown change

pull/115/head
Binit Shah 1 year ago
parent
commit
df390f8e9a
1 changed files with 26 additions and 0 deletions
  1. +26
    -0
      .github/workflows/auto_deploy_docs.yaml

+ 26
- 0
.github/workflows/auto_deploy_docs.yaml View File

@ -0,0 +1,26 @@
name: Auto Deploy Docs
run-name: Edit by ${{ github.actor }} triggered docs deployment
on:
push:
branches:
- 'noetic'
paths:
- '*.md'
jobs:
Dispatch-Deploy-Workflow:
runs-on: ubuntu-latest
steps:
- name: Print out debug info
run: echo "Repo ${{ github.repository }} | Branch ${{ github.ref }} | Runner ${{ runner.os }} | Event ${{ github.event_name }}"
- name: Dispatch deploy workflow
uses: actions/github-scripts@v6
with:
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'hello-robot',
repo: 'hello-robot.github.io',
workflow_id: 'auto_deploy.yaml',
ref: '0.3',
})

Loading…
Cancel
Save