From 89cd0e7b1d82d56ba75a62323c8a4b07d1c24ba1 Mon Sep 17 00:00:00 2001 From: Dustin Spicuzza Date: Thu, 14 Mar 2024 01:33:55 -0400 Subject: [PATCH] Re-enable ping-meta --- .github/workflows/dist.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dist.yml b/.github/workflows/dist.yml index 8a5cb335..131cbe69 100644 --- a/.github/workflows/dist.yml +++ b/.github/workflows/dist.yml @@ -290,4 +290,17 @@ jobs: uses: robotpy/build-actions/ping-rtd@v2024 with: token: ${{ secrets.RTD_TOKEN }} - webhook: ${{ secrets.RTD_WEBHOOK }} \ No newline at end of file + 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 }}"}'