Skip to content

Commit eb2a74a

Browse files
authored
NR: Modern Ubuntu doesn't like root packages, but this is a build node so it's fine!
1 parent 6ee2146 commit eb2a74a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pelican/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ runs:
4545
run: |
4646
(
4747
test "${{ inputs.debug }}" == 'true' || exec >/dev/null
48-
pip3 install pelican==${{ inputs.version }} markdown bs4 ezt requests
48+
pip3 install --break-system-packages pelican==${{ inputs.version }} markdown bs4 ezt requests
4949
)
5050
python3 -V
5151
echo "Pelican version:"
@@ -95,7 +95,7 @@ runs:
9595
if [ -n "${{ inputs.requirements }}" ]
9696
then
9797
echo "Installing python requirements from ${{ inputs.requirements }}"
98-
pip3 install -r ${{ inputs.requirements }}
98+
pip3 install --break-system-packages -r ${{ inputs.requirements }}
9999
fi
100100
if [ "${{ inputs.debug }}" == 'true' ]
101101
then

0 commit comments

Comments
 (0)