We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39e5feb commit 541aaffCopy full SHA for 541aaff
.github/workflows/publish-to-test.yaml
@@ -28,7 +28,7 @@ jobs:
28
DEV_VERSION=${{ github.event.inputs.dev_version }}
29
CURRENT_VERSION=$(awk -F= '/__version__ =/ {print $2}' llama_cpp/__init__.py | tr -d ' "')
30
NEW_VERSION="${CURRENT_VERSION}.dev${DEV_VERSION}"
31
- sed -i "s/__version__ = \\".*\\"/__version__ = \\"${NEW_VERSION}\\"/" llama_cpp/__init__.py
+ sed -i 's/__version__ = \".*\"/__version__ = \"'"${NEW_VERSION}"'\"/' llama_cpp/__init__.py
32
- name: Install dependencies
33
run: |
34
python3 -m pip install --upgrade pip build
0 commit comments