diff --git a/.github/workflows/build_and_publish.yaml b/.github/workflows/build_and_publish.yaml index 5dfed6a..317972a 100644 --- a/.github/workflows/build_and_publish.yaml +++ b/.github/workflows/build_and_publish.yaml @@ -100,6 +100,11 @@ jobs: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') steps: - uses: actions/checkout@v4 + - uses: actions/download-artifact@v5 + with: + pattern: "*cibw*" + - name: Display structure of downloaded files + run: ls -R - uses: ncipollo/release-action@v1 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -107,6 +112,7 @@ jobs: tag: ${{ github.ref }} prerelease: false name: Release ${{ github.ref }} + artifacts: "*cibw*/*.whl,cibw-sdist/*.tar.gz" upload_all: needs: [build_wheels, make_sdist] diff --git a/.github/workflows/temporary_gh_only_draft_release.yaml b/.github/workflows/temporary_gh_only_draft_release.yaml deleted file mode 100644 index 500441b..0000000 --- a/.github/workflows/temporary_gh_only_draft_release.yaml +++ /dev/null @@ -1,103 +0,0 @@ -# based off the cookiecutter action provided by https://github.com/scientific-python/cookie -name: draftReleaseWithWheels - -on: - workflow_dispatch: - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -env: - # Many color libraries just need this to be set to any value, but at least - # one distinguishes color depth, where "3" -> "256-bit color". - FORCE_COLOR: 3 - -jobs: - make_sdist: - name: Make SDist - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Build SDist - run: pipx run build --sdist - - - uses: actions/upload-artifact@v4 - with: - name: cibw-sdist - path: dist/*.tar.gz - - build_wheels: - name: Wheel on ${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ - macos-13, # x86_64 - macos-14, # arm64 - ] - - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Build wheels - uses: pypa/cibuildwheel@v2.21 - - - name: Upload wheels - uses: actions/upload-artifact@v4 - with: - name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} - path: wheelhouse/*.whl - - build_pyodide: - name: Wheel (pyodide) - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Build pyodide wheels - uses: pypa/cibuildwheel@v2.21 - env: - # Tell cibuildwheel to build for pyodide (WASM) - CIBW_PLATFORM: pyodide - # Optional: build all pyodide wheel tags - CIBW_BUILD: '*' - # Ensure output lands in wheelhouse - CIBW_OUTPUT_DIR: wheelhouse - - - name: Upload pyodide wheels - uses: actions/upload-artifact@v4 - with: - # Note: we prepend "no-pypi-" to avoid this artifact being - # included in the PyPI upload step. - name: no-pypi-cibw-wheels-pyodide - path: wheelhouse/*.whl - - create_gh_draft_release: - needs: [build_wheels, build_pyodide, make_sdist] - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - uses: actions/checkout@v4 - - uses: actions/download-artifact@v5 - with: - pattern: "*cibw*" - - name: Display structure of downloaded files - run: ls -R - - uses: ncipollo/release-action@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - draft: true - tag: ${{ github.ref }} - prerelease: false - name: Release ${{ github.ref }} - artifacts: "*cibw*/*.whl,.cibw-sdist/*.tar.gz"