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 776ceec commit 3fe2a70Copy full SHA for 3fe2a70
1 file changed
.github/workflows/build-numpy.yml
@@ -103,9 +103,15 @@ jobs:
103
if: github.ref == 'refs/heads/main'
104
runs-on: ubuntu-latest
105
permissions:
106
- contents: read
+ contents: write
107
+ pull-requests: write
108
109
steps:
110
+ - name: Checkout python-wheels
111
+ uses: actions/checkout@v4
112
+ with:
113
+ fetch-depth: 0
114
+
115
- name: Download wheels
116
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
117
with:
@@ -121,3 +127,8 @@ jobs:
121
127
gitlab-project-id: ${{ vars.GITLAB_PROJECT_ID }}
122
128
files: |
123
129
dist/*.whl
130
131
+ - name: Open docs update PR
132
+ env:
133
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
134
+ run: python3 ci_scripts/update_doc.py
0 commit comments