Skip to content

Commit

Permalink
just keep version as env var
Browse files Browse the repository at this point in the history
  • Loading branch information
lizgehret committed Dec 11, 2024
1 parent 3f1920d commit 7f8f1d3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/lib-ci-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ jobs:
python -m pip install --upgrade pip
pip install versioningit
# - name: 'Get plugin version and inject into pyproject.toml (Linux)'
# if: ${{ matrix.os == 'ubuntu-latest' }}
# run: |
# cd ${{ env.plugin_path }}
# PLUGIN_VERSION=$(python -m versioningit)
# echo "PLUGIN_VERSION=$PLUGIN_VERSION" >> $GITHUB_ENV
- name: 'Get plugin version and inject into pyproject.toml'
# if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
cd ${{ env.plugin_path }}
PLUGIN_VERSION=$(python -m versioningit)
echo "PLUGIN_VERSION=$PLUGIN_VERSION" >> $GITHUB_ENV
# sed -i "s/dynamic = \['version'\]/version = \"$PLUGIN_VERSION\"/" pyproject.toml
# cat pyproject.toml

Expand Down

0 comments on commit 7f8f1d3

Please sign in to comment.