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 03a2ae4 commit cb2f6e5Copy full SHA for cb2f6e5
1 file changed
.github/workflows/autoupdate.yml
@@ -18,12 +18,12 @@ jobs:
18
- name: Fetch latest Python 3.12 release
19
id: get-python-version
20
run: |
21
- python-version=$(curl -s https://www.python.org/ftp/python/ | grep -oP '3\.12\.\d+/' | uniq | sort -V | tail -n 1 | tr -d '/')
+ python_version=$(curl -s https://www.python.org/ftp/python/ | grep -oP '3\.12\.\d+/' | uniq | sort -V | tail -n 1 | tr -d '/')
22
23
- echo "python3.12: $python-version"
+ echo "python3.12: $python_version"
24
25
- echo ${python-version} > .python-version
26
- echo "python-version=${python-version}" >> $GITHUB_OUTPUT
+ echo ${python_version} > .python-version
+ echo "python-version=${python_version}" >> $GITHUB_OUTPUT
27
28
- name: Detect changes
29
id: git-diff
0 commit comments