docs: readme updates with new logo #33
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
--- | |
name: Publish Docs | |
on: # yamllint disable-line rule:truthy | |
push: | |
paths: | |
- 'docs/**' | |
- 'README.md' | |
branches: | |
- 'master' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger remote workflow | |
run: | | |
curl -X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${{ secrets.WWW_TOKEN }}" \ | |
-H "X-GitHub-Api-Version: 2022-11-28" \ | |
https://api.github.com/repos/acrlabs/www/actions/workflows/publish.yml/dispatches \ | |
-d '{"ref":"master","inputs":{}}' |