We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be87853 commit 89cd0e7Copy full SHA for 89cd0e7
.github/workflows/dist.yml
@@ -290,4 +290,17 @@ jobs:
290
uses: robotpy/build-actions/ping-rtd@v2024
291
with:
292
token: ${{ secrets.RTD_TOKEN }}
293
- webhook: ${{ secrets.RTD_WEBHOOK }}
+ 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