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 .cookiecutter.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"_commit": "4f973550456b326aa3547fee2ae81286659f51b0",
"_commit": "e43ac97858d8d40be0104a7a313ed12bcf9e1ab7",
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
"add_rust_extension": false,
"author": "Kyle Oliver",
Expand Down
4 changes: 2 additions & 2 deletions .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
"commit": "4f973550456b326aa3547fee2ae81286659f51b0",
"commit": "e43ac97858d8d40be0104a7a313ed12bcf9e1ab7",
"checkout": null,
"context": {
"cookiecutter": {
Expand All @@ -18,7 +18,7 @@
"license": "MIT",
"development_status": "Development Status :: 1 - Planning",
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
"_commit": "4f973550456b326aa3547fee2ae81286659f51b0"
"_commit": "e43ac97858d8d40be0104a7a313ed12bcf9e1ab7"
}
},
"directory": null
Expand Down
17 changes: 9 additions & 8 deletions .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event_name == 'push' && github.ref || github.event.inputs.tag }}

- name: Set up uv
uses: astral-sh/setup-uv@v6
Expand All @@ -60,7 +58,7 @@ jobs:
- name: Upload built package artifacts
uses: actions/upload-artifact@v4
with:
name: distribution-packages
name: distribution-packages-${{ needs.get_tag.outputs.tag }}
path: dist/
retention-days: 7

Expand All @@ -82,11 +80,8 @@ jobs:
needs: build_and_testpypi

steps:
- name: Download package artifacts
uses: actions/download-artifact@v4
with:
name: distribution-packages
path: dist/
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
Expand All @@ -96,6 +91,12 @@ jobs:
- name: Set up uv
uses: astral-sh/setup-uv@v6

- name: Download package artifacts
uses: actions/download-artifact@v4
with:
name: distribution-packages-${{ needs.build_and_testpypi.outputs.tag }}
path: dist/

- name: Create Tag
run: |
git tag ${{ needs.build_and_testpypi.outputs.tag }}
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## v0.3.0 (2025-07-16)

## v0.2.0 (2025-07-16)

## v0.1.0 (2025-07-16)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "robust-python-demo"
version = "0.2.0"
version = "0.3.0"
description = "robust-python-demo"
authors = [
{ name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" },
Expand Down
Loading