Skip to content

Commit 032f32c

Browse files
committed
fixes
1 parent 18281df commit 032f32c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/.github/workflows/ci.yaml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/setup-python@v2
1616
with:
1717
python-version: 3.9
18-
- run: Set up Poetry
18+
- name: Set up Poetry
1919
run: |
2020
pip install poetry
2121
poetry config virtualenvs.in-project true
@@ -61,7 +61,7 @@ jobs:
6161
run: pip install poetry && poetry publish --build
6262
env:
6363
GH_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
64-
PYPI_TOKEN: {% raw %}${{ secrets.PYPI_TOKEN }}{% endraw %}
64+
POETRY_PYPI_TOKEN_PYPI: {% raw %}${{ secrets.PYPI_TOKEN }}{% endraw %}
6565
{% endif -%}
6666
{% if docker -%}
6767
- uses: satackey/action-docker-layer-caching@v0.0.11

src/README.md.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
## Installation
1313

1414
```sh
15-
pip install {{project_name}}
15+
pip install {{project_name | lower | replace(' ', '-') | replace('_', '-')}}
1616
```
1717

1818
## Usage

0 commit comments

Comments
 (0)