Skip to content

Commit ef9afee

Browse files
authored
Fix for STORM_VERSION by taking the STORM_GIT_TAG (#292)
1 parent eea6bb9 commit ef9afee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
- name: Get Storm version
2424
id: getVersion
2525
run: |
26-
# Get Storm version from set(STORM_MIN_VERSION "x.y.z") in CMakeLists.txt
27-
echo "STORM_VERSION=$(sed -n -E 's/\s*set\(STORM_MIN_VERSION "(.+)"\)/\1/p' CMakeLists.txt)" >> "$GITHUB_OUTPUT"
26+
# Get Storm version from STORM_GIT_TAG in pyproject.toml
27+
echo "STORM_VERSION=$(sed -n -E 's/STORM_GIT_TAG="(.+)"/\1/p' pyproject.toml)" >> "$GITHUB_OUTPUT"
2828
2929
deploy_docker:
3030
# Create Docker images for tag

0 commit comments

Comments
 (0)