Skip to content

Commit 2e6d9b2

Browse files
committed
fix 3.14 and show hashes
1 parent a67b625 commit 2e6d9b2

1 file changed

Lines changed: 11 additions & 4 deletions

File tree

.github/workflows/github_workflows_build-all_3.14.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
# Gemini says: can update this section to dynamically select Python versions based on matrix if needed.
3939
echo "python_source=https://github.com/astral-sh/python-build-standalone/releases/download/20250818/cpython-3.14.0rc2+20250818-x86_64-pc-windows-msvc-install_only_stripped.tar.gz" >> $GITHUB_ENV
4040
echo "python_sha256=361a49531a5d4bdc72bbccc81f7b5881b5eb751e3b47683b233cacae5aeeaeed" >> $GITHUB_ENV
41-
echo "build_location=WPy64-3140rc2" >> $GITHUB_ENV
42-
echo "WINPYVER=3.14.0.0${{ matrix.flavor_config.FLAVOR }}b3" >> $GITHUB_ENV
43-
echo "WINPYVER2=3.14.0.0" >> $GITHUB_ENV
41+
echo "build_location=WPy64-31401rc2" >> $GITHUB_ENV
42+
echo "WINPYVER=3.14.0.1${{ matrix.flavor_config.FLAVOR }}b3" >> $GITHUB_ENV
43+
echo "WINPYVER2=3.14.0.1" >> $GITHUB_ENV
4444
4545
# Set matrix-specific variables
4646
echo "WINPYFLAVOR=${{ matrix.flavor_config.FLAVOR }}" >> $GITHUB_ENV
@@ -194,4 +194,11 @@ jobs:
194194
with:
195195
name: ${{ matrix.flavor_config.ARTIFACT_NAME }}
196196
path: publish_output
197-
#retention-days: 30 # keeps artifact for 30 days
197+
retention-days: 66 # keeps artifact for 66 days
198+
199+
- name: generate hashes wppm style
200+
shell: bash
201+
run: |
202+
DESTFILE="./publish_output/hashes.md"
203+
python -c "import sys;from wppm import hash; hash.print_hashes(sys.argv[1:])" publish_output/*64.* > $DESTFILE
204+
cat $DESTFILE

0 commit comments

Comments
 (0)