diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 98a5e3f9b..05a2363c1 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -248,21 +248,6 @@ jobs: sccache: 'true' manylinux: ${{ matrix.platform.manylinux || '' }} - # - name: Move wheels to artifacts directory (MacOS, Linux) - # if: runner.os != 'Windows' - # run: | - # OS_ARCH_DIR="artifacts" - # sudo mkdir -p "$OS_ARCH_DIR" - # sudo mv python/target/dist/* "$OS_ARCH_DIR/" - - # - name: Move wheels to artifacts directory (Windows) - # if: runner.os == 'Windows' - # shell: pwsh - # run: | - # $OS_ARCH_DIR = "artifacts" - # mkdir -p $OS_ARCH_DIR - # Move-Item -Path "python/target/dist/*" -Destination "$OS_ARCH_DIR" -Force - - name: Upload artifacts uses: actions/upload-artifact@v4 with: @@ -279,18 +264,10 @@ jobs: with: path: artifacts - # - name: Organize artifacts into OS/Architecture directories - # run: | - # sudo mkdir -p combined_artifacts - # sudo mv all_artifacts/* combined_artifacts/ - - name: Zip artifacts run: | - pwd - ls -l cd artifacts sudo zip -r ../kaspa-python-sdk.zip . - cd .. - name: Upload consolidated release asset uses: actions/upload-release-asset@v1 @@ -298,6 +275,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ github.event.release.upload_url }} - asset_path: ./kaspa-python-sdk-${{ github.event.release.tag_name }}.zip - asset_name: "kaspa-python-sdk.zip" + asset_path: ./kaspa-python-sdk.zip + asset_name: "kaspa-python-sdk-${{ github.event.release.tag_name }}.zip" asset_content_type: application/zip