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 ba8c32d commit fd118bbCopy full SHA for fd118bb
1 file changed
.github/workflows/wasm.yml
@@ -52,14 +52,27 @@ 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
+ # Switch to real branch
56
+ git fetch origin main
57
+ git checkout main
58
+ git pull
59
+
60
+ # Copy new wheels
61
+ mkdir -p wheels
62
rm -f wheels/*.whl || true
63
cp wheelhouse/*.whl wheels/
64
65
echo "Copied wheels:"
66
ls -lh wheels/
67
68
+ # Commit
69
git config user.name "GitHub Actions"
70
git config user.email "actions@github.com"
71
72
+ git add wheels
73
74
git commit -a -m "Update wheels for release ${{ github.ref_name }}"
- git push
75
+ git push origin main
76
77
# This is not working yet
78
# - name: Upload wheel to release
0 commit comments