We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4150322 commit d1aa358Copy full SHA for d1aa358
.github/workflows/version.yaml
@@ -18,7 +18,7 @@ jobs:
18
run: pip install poetry
19
- name: Bump version
20
# TODO(masanori): Use uv to bump version
21
- run: git branch --show-current | sed 's|release/||' | xargs poetry version | { printf '::set-output name=PR_TITLE::'; cat; }
+ run: echo "PR_TITLE=$(git branch --show-current | sed 's|release/||' | xargs poetry version)" >> "$GITHUB_OUTPUT"
22
id: bump
23
- name: Bump qfeval_functions.__version__
24
run: git branch --show-current | sed 's|release/||' | xargs -I {} echo '__version__ = "{}"' > qfeval_functions/version.py
0 commit comments