Skip to content

Commit f7365bd

Browse files
authored
Merge pull request #20 from dryan/change-to-uv
♻️ change to uv publish to send to pypi
2 parents c1e08c0 + b310e75 commit f7365bd

File tree

3 files changed

+7
-37
lines changed

3 files changed

+7
-37
lines changed

.github/workflows/release_new_tags.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,12 @@ jobs:
1212
- name: Setup Python 3.13
1313
uses: actions/setup-python@v5
1414
with:
15-
python-version: "3.12"
15+
python-version: "3.13"
1616
- name: Install uv
1717
uses: astral-sh/setup-uv@v3
1818
- name: Build & Publish
1919
run: |
2020
uv build
21-
uv publish -u $PYPI_USERNAME -p $PYPI_PASSWORD
21+
uv publish
2222
env:
23-
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
24-
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
23+
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "d3ploy"
3-
version = "4.4.0"
3+
version = "4.4.1"
44
description = "Easily deploy to S3 with multiple environment support."
55
authors = [
66
{name = "dryan", email = "[email protected]"},
@@ -30,6 +30,9 @@ homepage = "https://github.com/dryan/d3ploy"
3030
repository = "https://github.com/dryan/d3ploy"
3131
documentation = "https://github.com/dryan/d3ploy#readme"
3232

33+
[project.scripts]
34+
d3ploy = "d3ploy.cli"
35+
3336
[tool.ruff.lint.isort]
3437
force-single-line = true
3538

setup.py

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)