We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d81ba14 commit 96a0d28Copy full SHA for 96a0d28
.github/workflows/docker.yml
@@ -18,12 +18,7 @@ jobs:
18
- name: Extract version
19
id: version
20
run: |
21
- VERSION=$(python - <<'PY'
22
- import tomllib
23
- data = tomllib.load(open("pyproject.toml", "rb"))
24
- print(data["project"]["version"])
25
- PY
26
- )
+ VERSION=$(python -c "import tomllib; print(tomllib.load(open('pyproject.toml','rb'))['project']['version'])")
27
echo "version=${VERSION}" >> $GITHUB_OUTPUT
28
29
- name: Set up QEMU
0 commit comments