@@ -10,69 +10,70 @@ jobs:
1010 - uses : actions/checkout@v4
1111 - uses : actions/setup-python@v5
1212 with :
13- python-version : ' 3.11 '
13+ python-version : ' 3.9 '
1414 - uses : actions/setup-node@v4
1515 with :
1616 node-version : 22.14.0
1717 - name : Build
1818 run : |
1919 set -ex
2020 mkdir /tmp/sdists
21- python grr/proto/setup.py --quiet sdist --formats=zip --dist-dir="/tmp/sdists"
22- python grr/core/setup.py --quiet sdist --formats=zip --dist-dir="/tmp/sdists"
23- python grr/client/setup.py --quiet sdist --formats=zip --dist-dir="/tmp/sdists"
24- python grr/client_builder/setup.py --quiet sdist --formats=zip --dist-dir="/tmp/sdists"
25- python grr/server/setup.py --quiet sdist --formats=zip --dist-dir="/tmp/sdists"
26- python grr/test/setup.py --quiet sdist --formats=zip --dist-dir="/tmp/sdists"
27- python colab/setup.py --quiet sdist --formats=zip --dist-dir="/tmp/sdists"
28- python api_client/python/setup.py --quiet sdist --formats=zip --dist-dir="/tmp/sdists"
21+ python grr/proto/setup.py --quiet sdist --dist-dir="/tmp/sdists"
22+ python grr/core/setup.py --quiet sdist --dist-dir="/tmp/sdists"
23+ python grr/client/setup.py --quiet sdist --dist-dir="/tmp/sdists"
24+ python grr/client_builder/setup.py --quiet sdist --dist-dir="/tmp/sdists"
25+ python grr/server/setup.py --quiet sdist --dist-dir="/tmp/sdists"
26+ python grr/test/setup.py --quiet sdist --dist-dir="/tmp/sdists"
27+ python colab/setup.py --quiet sdist --dist-dir="/tmp/sdists"
28+ python api_client/python/setup.py --quiet sdist --dist-dir="/tmp/sdists"
29+ ls -lha /tmp/sdists/
2930 - name : Upload grr-response-proto
3031 uses : actions/upload-artifact@v4
3132 with :
3233 name : grr-response-proto
33- path : /tmp/sdists/grr-response-proto-[0-9]*.zip
34+ path : /tmp/sdists/grr_response_proto-*.tar.gz
3435 retention-days : 3
3536 - name : Upload grr-response-core
3637 uses : actions/upload-artifact@v4
3738 with :
3839 name : grr-response-core
39- path : /tmp/sdists/grr-response-core-[0-9]*.zip
40+ path : /tmp/sdists/grr_response_core-*.tar.gz
4041 retention-days : 3
4142 - name : Upload grr-response-client
4243 uses : actions/upload-artifact@v4
4344 with :
4445 name : grr-response-client
45- path : /tmp/sdists/grr-response-client-[0-9]*.zip
46+ path : /tmp/sdists/grr_response_client-*.tar.gz
4647 retention-days : 3
4748 - name : Upload grr-response-client-builder
4849 uses : actions/upload-artifact@v4
4950 with :
5051 name : grr-response-client-builder
51- path : /tmp/sdists/grr-response-client-builder-[0-9]*.zip
52+ path : /tmp/sdists/grr_response_client_builder-*.tar.gz
5253 retention-days : 3
5354 - name : Upload grr-response-server
5455 uses : actions/upload-artifact@v4
5556 with :
5657 name : grr-response-server
57- path : /tmp/sdists/grr-response-server-[0-9]*.zip
58+ path : /tmp/sdists/grr_response_server-*.tar.gz
5859 retention-days : 3
5960 - name : Upload grr-response-test
6061 uses : actions/upload-artifact@v4
6162 with :
6263 name : grr-response-test
63- path : /tmp/sdists/grr-response-test-[0-9]*.zip
64+ path : /tmp/sdists/grr_response_test-*.tar.gz
6465 retention-days : 3
6566 - name : Upload grr-colab
6667 uses : actions/upload-artifact@v4
6768 with :
6869 name : grr-colab
69- path : /tmp/sdists/grr-colab-[0-9]*.zip
70+ path : /tmp/sdists/grr_colab-*.tar.gz
7071 retention-days : 3
7172 - name : Upload grr-api-client
7273 uses : actions/upload-artifact@v4
7374 with :
7475 name : grr-api-client
75- path : /tmp/sdists/grr-api-client-[0-9]*.zip
76+ path : /tmp/sdists/grr_api_client-*.tar.gz
7677 retention-days : 3
7778
7879 publish-to-pypi-grr-response-proto :
0 commit comments