Skip to content

Commit 5478548

Browse files
committed
Merge branch 'main' into release/0.68
2 parents 0d1b5f3 + 12efc93 commit 5478548

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)