Skip to content

Commit

Permalink
Re-enable ping-meta
Browse files Browse the repository at this point in the history
  • Loading branch information
virtuald committed Mar 14, 2024
1 parent be87853 commit 89cd0e7
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -290,4 +290,17 @@ jobs:
uses: robotpy/build-actions/ping-rtd@v2024
with:
token: ${{ secrets.RTD_TOKEN }}
webhook: ${{ secrets.RTD_WEBHOOK }}
webhook: ${{ secrets.RTD_WEBHOOK }}

ping-meta:
runs-on: ubuntu-latest
needs: [publish-rpyrepo, publish-pypi]
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')

steps:
- uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.META_REPO_ACCESS_TOKEN }}
repository: robotpy/robotpy-meta
event-type: tag
client-payload: '{"package_name": "mostrobotpy", "package_version": "${{ github.ref_name }}"}'

0 comments on commit 89cd0e7

Please sign in to comment.