From 16032accc447d0bf3a25fe74095ec8cda4457986 Mon Sep 17 00:00:00 2001 From: clintval Date: Fri, 18 Oct 2024 12:02:35 -0700 Subject: [PATCH] chore: fix GitHub Actions auto-publish --- .github/workflows/{publish.yml => publish_prymer.yml} | 5 ++--- .github/workflows/tests.yml | 1 - .github/workflows/wheels.yml | 4 ++-- 3 files changed, 4 insertions(+), 6 deletions(-) rename .github/workflows/{publish.yml => publish_prymer.yml} (96%) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish_prymer.yml similarity index 96% rename from .github/workflows/publish.yml rename to .github/workflows/publish_prymer.yml index 4bf39ea..40af036 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish_prymer.yml @@ -1,4 +1,4 @@ -name: publish +name: publish prymer on: push: @@ -107,7 +107,6 @@ jobs: uses: softprops/action-gh-release@v2 with: name: ${{ github.ref_name }} - body: | - ${{ needs.draft-changelog.outputs.release_body }} + body: ${{ needs.make-changelog.outputs.release_body }} draft: false prerelease: false diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9437b81..0571c66 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,7 +35,6 @@ jobs: - name: Set up miniconda uses: conda-incubator/setup-miniconda@v3 with: - miniforge-variant: Mambaforge miniforge-version: latest channels: conda-forge,bioconda activate-environment: prymer diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index c2815b0..c81da25 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -24,11 +24,11 @@ jobs: python-version: ${{ matrix.python }} - name: Build wheels - run: pip wheel -w wheelhouse . + run: pip wheel --no-deps -w wheelhouse . - name: Upload wheels uses: actions/upload-artifact@v4 with: name: prymer-wheels-${{ matrix.python }} - path: ./wheelhouse/*.whl + path: ./wheelhouse/prymer*.whl if-no-files-found: error