Trigger website rebuild on all branch pushes, not just master. #3
This file contains hidden or 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: Notify Website | |
| on: | |
| push: | |
| jobs: | |
| trigger: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger website rebuild | |
| uses: peter-evans/repository-dispatch@v3 | |
| with: | |
| token: ${{ secrets.WEBSITE_DISPATCH_TOKEN }} | |
| repository: PhillipChaffee/phillipchaffee.github.io | |
| event-type: resume-updated |