Skip to content

Commit 67bb4c8

Browse files
authored
Fix broken reference to version file in workflow (#249)
1 parent c922bc2 commit 67bb4c8

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

doc/changes/unreleased.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
## 🐞 Bug Fixes
1313

1414
* #181 Updated metrics related workflows
15+
* #225 Fixed broken reference to version file in workflow
1516
* Fixed coverage for empty project
1617

1718
## ⚒️ Refactorings

exasol/toolbox/templates/github/workflows/checks.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,13 @@ jobs:
2222
uses: exasol/python-toolbox/.github/actions/python-environment@0.14.0
2323

2424
- name: Check Version(s)
25-
run: poetry run version-check <<Add path to version.py file>>
25+
run: |
26+
echo "Please enable the version check by replacing this output with shell command bellow:"
27+
echo ""
28+
echo "poetry run version-check <<VERSION_PY>>"
29+
echo ""
30+
echo "Note: <<VERSION_PY>> needs to point to the version file of the project (version.py)."
31+
exit 1
2632
2733
build-documentation-job:
2834
name: Build Documentation

0 commit comments

Comments
 (0)