chore: comment for maritalk (#6607) #5767
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Read Version from pyproject.toml | |
on: | |
push: | |
branches: | |
- main # Change this to the default branch of your repository | |
jobs: | |
read-version: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 # Adjust the Python version as needed | |
- name: Install dependencies | |
run: pip install toml | |
- name: Read version from pyproject.toml | |
id: read-version | |
run: | | |
version=$(python -c 'import toml; print(toml.load("pyproject.toml")["tool"]["commitizen"]["version"])') | |
printf "LITELLM_VERSION=%s" "$version" >> $GITHUB_ENV | |
- name: Display version | |
run: echo "Current version is $LITELLM_VERSION" |