1- name : Publish Pragzip to PyPI
1+ name : Publish Rapidgzip to PyPI
22
33on :
44 push :
55 tags :
6- - ' pragzip -v*.*.*'
6+ - ' rapidgzip -v*.*.*'
77
88jobs :
99 Deploy-Wheels :
5353 # OS X 10.9 (Mavericks) | 2013-10-22 | 2016-12-01
5454 MACOSX_DEPLOYMENT_TARGET : " 10.14"
5555
56- # The following parts should be an exact copy of the wheels-pragzip .yml workflow:
57- # ------ Begin Copy-Paste of wheels-pragzip .yml ------
56+ # The following parts should be an exact copy of the wheels-rapidgzip .yml workflow:
57+ # ------ Begin Copy-Paste of wheels-rapidgzip .yml ------
5858 steps :
5959 - uses : actions/checkout@v3
6060 with :
@@ -71,30 +71,30 @@ jobs:
7171 python3 -m pip install --upgrade-strategy eager --upgrade cython twine cibuildwheel build
7272
7373 - name : Build Tarball
74- working-directory : python/pragzip
74+ working-directory : python/rapidgzip
7575 run : python3 -m build --sdist
7676
7777 - name : Build Wheels
7878 env :
7979 CIBW_ARCHS : ${{ matrix.archs }}
8080 CIBW_MANYLINUX_X86_64_IMAGE : ${{ matrix.manylinux-image }}
81- run : python -m cibuildwheel --output-dir dist python/pragzip
81+ run : python -m cibuildwheel --output-dir dist python/rapidgzip
8282
8383 - name : Check Wheels
84- run : twine check dist/* python/pragzip /dist/*
85- # ------ End Copy-Paste of wheels-pragzip .yml ------
84+ run : twine check dist/* python/rapidgzip /dist/*
85+ # ------ End Copy-Paste of wheels-rapidgzip .yml ------
8686
8787 - name : Publish Tarball to PyPI
8888 env :
89- TWINE_PASSWORD : ${{ secrets.TWINE_PASSWORD_PRAGZIP }}
90- working-directory : python/pragzip
89+ TWINE_PASSWORD : ${{ secrets.TWINE_PASSWORD_RAPIDGZIP }}
90+ working-directory : python/rapidgzip
9191 # Only one out of the OS matrix needs to upload the tarball.
9292 if : matrix.manylinux-image == 'manylinux2014' && matrix.os == 'ubuntu-latest'
9393 run : twine upload --skip-existing -u __token__ dist/*
9494
9595 - name : Publish Wheels to PyPI
9696 env :
97- TWINE_PASSWORD : ${{ secrets.TWINE_PASSWORD_PRAGZIP }}
97+ TWINE_PASSWORD : ${{ secrets.TWINE_PASSWORD_RAPIDGZIP }}
9898 run : twine upload --skip-existing -u __token__ dist/*
9999
100100
@@ -132,7 +132,7 @@ jobs:
132132 EOF
133133
134134 - name : Build Conda Packages
135- # TODO copy and custom fit the conda folder into python/pragzip . Currently, it will upload to indexed_bzip2!
135+ # TODO copy and custom fit the conda folder into python/rapidgzip . Currently, it will upload to indexed_bzip2!
136136 # Bash shells do not use ~/.profile or ~/.bashrc so these shells need to be explicitely declared as shell:
137137 # bash -l {0} on steps that need to be properly activated
138138 shell : bash -l {0}
@@ -143,8 +143,8 @@ jobs:
143143 # https://github.com/conda/conda-build/issues/4509
144144 conda install conda=4.12.0 conda-build anaconda-client conda-verify packaging
145145 conda config --set anaconda_upload yes
146- cd conda # TODO copy and custom fit the conda folder into python/pragzip
146+ cd conda # TODO copy and custom fit the conda folder into python/rapidgzip
147147 python3 -m pip install --user build
148- python3 -m build -o . --sdist ../python/pragzip
149- mv pragzip -*.tar* src.tar
148+ python3 -m build -o . --sdist ../python/rapidgzip
149+ mv rapidgzip -*.tar* src.tar
150150 conda build --token "$ANACONDA_TOKEN" .
0 commit comments