We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 492756b commit 5705edbCopy full SHA for 5705edb
.github/workflows/ci.yml
@@ -64,10 +64,11 @@ jobs:
64
- name: Set version variables
65
id: version
66
run: |
67
- # shellcheck disable=SC2086
68
- { echo "all_versions=$(scripts/manage_versions.py all)"; \
69
- echo "current=$(scripts/manage_versions.py current)"; \
70
- echo "version_pairs=$(scripts/manage_versions.py generate_pairs)"; } >> $GITHUB_OUTPUT
+ {
+ echo "all_versions=$(scripts/manage_versions.py all)"
+ echo "current=$(scripts/manage_versions.py current)"
+ echo "version_pairs=$(scripts/manage_versions.py generate_pairs)"
71
+ } >> "$GITHUB_OUTPUT"
72
73
- name: Check out branch ${{ steps.version.outputs.current }}
74
uses: actions/[email protected]
0 commit comments