Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion snakedeploy/scaffold_plugins/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def save_pyproject(pyproject):
"coverage",
"pytest",
"twine",
"python-build",
"build",
]
if self.include_snakemake_dev_dependency():
dev_deps.append("snakemake")
Expand Down
3 changes: 2 additions & 1 deletion snakedeploy/templates/plugins/release_please.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
with:
release-type: python
package-name: {{ pyproject["project"]["name"] }}
token: {{ "${{ secrets.RELEASE_PLEASE_PR_CI_TOKEN }}" }}

publish:
runs-on: ubuntu-latest
Expand All @@ -36,7 +37,7 @@ jobs:

- name: Build source and wheel distribution + check build
run: |
pixi run check-build
pixi run -e dev check-build

- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down