-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from evanmartiin/develop
[Docs] Add documentation
- Loading branch information
Showing
67 changed files
with
72,279 additions
and
1,455 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Trigger docs re-build | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'develop' | ||
|
||
jobs: | ||
trigger_docs: | ||
name: Trigger docs re-build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{ secrets.ACTIONS_KEY }} | ||
script: | | ||
await github.rest.actions.createWorkflowDispatch({ | ||
owner: 'evanmartiin', | ||
repo: 'nanogl-docs', | ||
workflow_id: 'main.yml', | ||
ref: 'main' | ||
}) |
Oops, something went wrong.