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 a356c6f commit 44598dbCopy full SHA for 44598db
.github/workflows/Build-release.yml
@@ -183,6 +183,15 @@ jobs:
183
esac
184
done
185
186
+ - name: Download typeshed repository
187
+ run: |
188
+ git clone --depth=1 https://github.com/python/typeshed typeshed
189
+
190
+ - name: Zip typeshed
191
192
+ cd typeshed
193
+ zip -r ../typeshed.zip .
194
195
- name: Create Release
196
uses: softprops/action-gh-release@v2
197
with:
@@ -194,6 +203,7 @@ jobs:
203
./artifacts/*.zip
204
./artifacts/*.tar.gz
205
./artifacts/config_schema/config_schema.json
206
+ ./typeshed.zip
207
env:
198
208
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
199
209
0 commit comments