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 ccf86a1 commit 5bb4717Copy full SHA for 5bb4717
.github/workflows/wasm.yml
@@ -52,20 +52,12 @@ jobs:
52
- name: Move wheels into /wheels directory for GitHub Pages and trigger gh pages redeploy
53
if: startsWith(github.ref, 'refs/tags/')
54
run: |
55
- mkdir -p wheels
56
rm -f wheels/*.whl || true
57
cp wheelhouse/*.whl wheels/
58
echo "Copied wheels:"
59
ls -lh wheels/
60
git config user.name "GitHub Actions"
61
git config user.email "[email protected]"
62
-
63
- # Do nothing if no changes
64
- if git diff --cached --quiet; then
65
- echo "No new wheels to commit"
66
- exit 0
67
- fi
68
69
git commit -m "Update wheels for release ${{ github.ref_name }}"
70
git push
71
0 commit comments