Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
chore: update demo to the latest cookiecutter-robust-python
  • Loading branch information
56kyle committed Jul 17, 2025
commit b7cfdd02e7e83b79d58033dde5c5adce4ead4fb1
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