File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed
Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -816,18 +816,26 @@ jobs:
816816 python-version : 3.9
817817
818818 - uses : actions/download-artifact@v4
819+
820+ - name : Copying files and overwrite same name files
821+ # (to avoid upload issue)
822+ run : |
823+ mkdir artifacts
824+ find . -iname 'ansys_mapdl_core-*.tar.gz' -exec cp \{\} ./artifacts/ \;
825+ find . -iname 'ansys_mapdl_core-*-py3-none-any.whl' -exec cp \{\} ./artifacts/ \;
826+ find . -iname 'minimum_requirements.txt' -exec cp \{\} ./artifacts/ \;
819827
820828 - name : Display structure of downloaded files
821- run : ls -R
829+ run : ls -Rla
822830
823831 - name : " Release to GitHub"
824832 uses : softprops/action-gh-release@v1
825833 with :
826834 files : |
827- ./**/* .whl
828- ./**/*.tar.gz
829- ./**/pymapdl*.pdf
830- ./**/ansys-mapdl-core*.zip
835+ ./**/artifacts/ansys_mapdl_core-*-py3-none-any .whl
836+ ./**/artifacts/ansys_mapdl_core- *.tar.gz
837+ ./**/pymapdl-Documentation- *.pdf
838+ ./**/ansys-mapdl-core*wheelhouse* .zip
831839 ./**/minimum_requirements.txt
832840
833841 - name : Upload to Public PyPi
You can’t perform that action at this time.
0 commit comments