We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67e7762 commit b9fd835Copy full SHA for b9fd835
.github/workflows/build.yml
@@ -18,6 +18,9 @@ jobs:
18
- id: install-hatch
19
run: pip install hatch
20
- id: bump-version
21
- run: export NEW_VERSION=`hatch run ci:bump-version`
22
- - id: version-check
23
- run: env
+ run: echo '__version__ = "`hatch run ci:bump-version`"' >> ./src/kc3zvd/iot_state/__about__.py
+ - id: check-version
+ run: cat ./src/kc3zvd/iot_state/__about__.py
24
+ outputs:
25
+ version: ${{ steps.bump-version.outputs.version }}
26
+
hatch.toml
@@ -15,8 +15,6 @@ bump-version = "python build/bump_version.py"
15
worker = "celery -A kc3zvd.iot_state.workers.wled worker"
16
listener = "python -m kc3zvd.iot_state.listeners.wled"
17
-[envs.ci]
-
[envs.dev]
[envs.dev.scripts]
0 commit comments