Skip to content

Commit

Permalink
chore: fix GitHub Actions auto-publish
Browse files Browse the repository at this point in the history
  • Loading branch information
clintval committed Oct 18, 2024
1 parent 78b6bb6 commit 16032ac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: publish
name: publish prymer

on:
push:
Expand Down Expand Up @@ -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
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 16032ac

Please sign in to comment.