SW-3509 Use reusable workflow for updating mrbeam-git-tags.inc (#5) #25
Workflow file for this run
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: Trigger doc build | |
on: | |
push: | |
release: | |
types: | |
- released | |
- prereleased | |
jobs: | |
trigger: | |
runs-on: ubuntu-latest | |
if: github.repository == 'OctoPrint/OctoPrint' | |
steps: | |
- name: 🚀 Repository Dispatch | |
uses: peter-evans/repository-dispatch@v1 | |
with: | |
token: ${{ secrets.REPODISPATCH_TOKEN }} | |
repository: OctoPrint/docs.octoprint.org | |
event-type: docs | |
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' |