Skip to content

Commit 1a1f3e9

Browse files
committed
Fixed build
1 parent 17fbaf0 commit 1a1f3e9

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/release_composer_package.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,11 @@ jobs:
6060
- name: Install dependencies
6161
run: |
6262
python -m pip install --upgrade pip
63-
pip install -r requirements.txt -r user-docs/requirements.txt
63+
# user-docs pins ibexa-llms-txt from the upstream git repo; drop that line —
64+
# the editable install from this checkout (requirements.txt: -e .) already
65+
# provides the plugin, and pip refuses two direct references to one package.
66+
grep -v '^ibexa-llms-txt @' user-docs/requirements.txt > user-reqs-filtered.txt
67+
pip install -r requirements.txt -r user-reqs-filtered.txt
6468
6569
- name: Setup PHP
6670
uses: shivammathur/setup-php@v2

0 commit comments

Comments
 (0)