diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6217f7c..14bbfda 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,8 +45,9 @@ jobs: - name: Create short-name and latest aliases run: | - cp dist/moma-${{ steps.version.outputs.version }}-py3-none-any.whl dist/moma-${{ steps.version.outputs.version }}.whl - cp dist/moma-${{ steps.version.outputs.version }}-py3-none-any.whl dist/moma-latest.whl + WHL=$(ls dist/moma-${{ steps.version.outputs.version }}-*.whl) + cp "$WHL" dist/moma-${{ steps.version.outputs.version }}.whl + cp "$WHL" dist/moma-latest.whl cp dist/moma-${{ steps.version.outputs.version }}.tar.gz dist/moma-latest.tar.gz - name: Create GitHub Release diff --git a/dist/.gitignore b/dist/.gitignore index e7aac78..d6b7ef3 100644 --- a/dist/.gitignore +++ b/dist/.gitignore @@ -1,3 +1,2 @@ * !.gitignore -!*.whl \ No newline at end of file diff --git a/dist/renamer-0.8.11-py3-none-any.whl b/dist/renamer-0.8.11-py3-none-any.whl deleted file mode 100644 index 2b6ff24..0000000 Binary files a/dist/renamer-0.8.11-py3-none-any.whl and /dev/null differ