Skip to content
Snippets Groups Projects
Unverified Commit 42d99699 authored by Ariya Hidayat's avatar Ariya Hidayat Committed by GitHub
Browse files

Triggers docs update upon a release (#27028)

parent f3cb01c6
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,23 @@ on:
jobs:
trigger-docs-update:
runs-on: ubuntu-20.04
timeout-minutes: 10
steps:
- uses: actions/github-script@v6
with:
github-token: ${{ secrets.DOCS_UPDATE_TOKEN }}
script: |
github.rest.repos.createDispatchEvent({
owner: '${{ github.repository_owner }}',
repo: '${{ secrets.DOCS_REPO }}',
event_type: 'trigger-docs-update',
client_payload: {
version: '${{ github.ref_name }}'
}
});
download-uberjar:
runs-on: ubuntu-20.04
timeout-minutes: 10
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment