Skip to content

Commit 89cd0e7

Browse files
committed
Re-enable ping-meta
1 parent be87853 commit 89cd0e7

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/dist.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,4 +290,17 @@ jobs:
290290
uses: robotpy/build-actions/ping-rtd@v2024
291291
with:
292292
token: ${{ secrets.RTD_TOKEN }}
293-
webhook: ${{ secrets.RTD_WEBHOOK }}
293+
webhook: ${{ secrets.RTD_WEBHOOK }}
294+
295+
ping-meta:
296+
runs-on: ubuntu-latest
297+
needs: [publish-rpyrepo, publish-pypi]
298+
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
299+
300+
steps:
301+
- uses: peter-evans/repository-dispatch@v3
302+
with:
303+
token: ${{ secrets.META_REPO_ACCESS_TOKEN }}
304+
repository: robotpy/robotpy-meta
305+
event-type: tag
306+
client-payload: '{"package_name": "mostrobotpy", "package_version": "${{ github.ref_name }}"}'

0 commit comments

Comments
 (0)