Skip to content

Commit c386610

Browse files
committed
try triggering downstream docs pipeline
1 parent 09e617b commit c386610

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.github/workflows/cd-pipeline.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ jobs:
77
test_publish_package:
88
name: Publish package to Test PyPI
99
runs-on: ubuntu-latest
10+
if: ${{ false }}
1011
permissions:
1112
id-token: write # IMPORTANT: mandatory for trusted publishing
1213
steps:
@@ -34,6 +35,7 @@ jobs:
3435
publish:
3536
name: Publish package to PyPI
3637
runs-on: ubuntu-latest
38+
if: ${{ false }}
3739
permissions:
3840
id-token: write # IMPORTANT: mandatory for trusted publishing
3941
steps:
@@ -59,3 +61,14 @@ jobs:
5961
with:
6062
user: __token__
6163
password: ${{ secrets.PYPI_API_TOKEN }}
64+
65+
publish_docs:
66+
name: Trigger docs pipeline
67+
runs-on: ubuntu-latest
68+
steps:
69+
- name: Trigger downstream workflow
70+
uses: peter-evans/repository-dispatch@v3
71+
with:
72+
token: ${{ secrets.GITHUB_TOKEN }}
73+
repository: hololinked-dev/docs
74+
event-type: trigger-downstream

.github/workflows/ci-pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
python-version: 3.13
3131

3232
runs-on: ${{ matrix.os }}
33+
if: ${{ false }}
3334

3435
steps:
3536
- name: Checkout code

0 commit comments

Comments
 (0)