Skip to content

Commit bdd8dd7

Browse files
committed
Launch the diffing-portal workflow during release build
1 parent 2fa02a8 commit bdd8dd7

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/release.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,19 @@ jobs:
7171
name: wheelhouse-sdist
7272
path: ./dist/*
7373

74+
run_diffing_portal:
75+
runs-on: ubuntu-latest
76+
steps:
77+
- name: Dispatch the diffing-portal workflow
78+
run: |
79+
curl -L \
80+
-X POST \
81+
-H "Accept: application/vnd.github+json" \
82+
-H "Authorization: Bearer ${{ secrets.DIFFING_PORTAL_TOKEN }}" \
83+
-H "X-GitHub-Api-Version: 2022-11-28" \
84+
https://api.github.com/repos/quarkslab/diffing-portal/actions/workflows/doc.yml/dispatches \
85+
-d '{"ref":"main"}'
86+
7487
upload_pypi:
7588
needs: [build_wheels, build_sdist]
7689
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)