diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index da0c9666..61607a1f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -290,11 +290,13 @@ jobs: - uses: actions/download-artifact@v3 with: name: dist + - name: List artifacts + run: ls -lhs - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: skip-existing: true - packages-dir: dist/ + packages-dir: ./ gh-publish: name: Publish artifacts to GH @@ -307,7 +309,9 @@ jobs: - uses: actions/download-artifact@v3 with: name: dist + - name: List artifacts + run: ls -lhs - name: Upload to GitHub uses: softprops/action-gh-release@v2 with: - files: dist/* + files: ./* diff --git a/Cargo.toml b/Cargo.toml index d6d62026..80a7df01 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cramjam-python" -version = "2.8.4-rc1" +version = "2.8.4-rc2" authors = ["Miles Granger "] edition = "2021" license = "MIT"