Skip to content

Commit

Permalink
action
Browse files Browse the repository at this point in the history
  • Loading branch information
luiztauffer committed Dec 11, 2024
1 parent 6f529ac commit ec9bea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish_main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Extract version from pyproject.toml
id: get_version
run: |
python -c "import tomli; print(tomli.loads(open('pyproject.toml', 'rb').read())['project']['version'])" > version.txt
python -c "import tomli; version=tomli.load(open('pyproject.toml', 'rb'))['project']['version']; print(version)" > version.txt
echo "version=$(cat version.txt)" >> $GITHUB_OUTPUT
- name: Determine Tag Name
Expand Down

0 comments on commit ec9bea2

Please sign in to comment.