diff --git a/.github/workflows/build_and_install_locally.yaml b/.github/workflows/build_and_install_locally.yaml index 6a36be6cac..bab93ce1aa 100644 --- a/.github/workflows/build_and_install_locally.yaml +++ b/.github/workflows/build_and_install_locally.yaml @@ -44,7 +44,7 @@ jobs: - name: Create requirements file run: | echo "create new requirements.txt without gfal dependencies for CI/CD" - cat requirements.txt | egrep -v "gfal" requirements.${{ matrix.target }}.txt + cat requirements.txt | egrep -v "gfal" > requirements.${{ matrix.target }}.txt awk "/(${{ matrix.target }}$)|(${{ matrix.target }},)/ {print \$1}" requirements.${{ matrix.target }}.txt > requirements.txt - name: Build sdist and wheels