Skip to content

Commit 3143c87

Browse files
committed
chore: update demo to the latest cookiecutter-robust-python
1 parent fa55f88 commit 3143c87

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.cookiecutter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"_commit": "ba54473a85c9ea61eaf6e65c3e57bd37bc2d4e89",
2+
"_commit": "b3e8970d19722387b647d9eba165e948e1b7c41a",
33
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
44
"add_rust_extension": false,
55
"author": "Kyle Oliver",

.cruft.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
3-
"commit": "ba54473a85c9ea61eaf6e65c3e57bd37bc2d4e89",
3+
"commit": "b3e8970d19722387b647d9eba165e948e1b7c41a",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -18,7 +18,7 @@
1818
"license": "MIT",
1919
"development_status": "Development Status :: 1 - Planning",
2020
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
21-
"_commit": "ba54473a85c9ea61eaf6e65c3e57bd37bc2d4e89"
21+
"_commit": "b3e8970d19722387b647d9eba165e948e1b7c41a"
2222
}
2323
},
2424
"directory": null

.github/workflows/release-python.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353
TWINE_PASSWORD: ${{ secrets.TESTPYPI_API_TOKEN }}
5454
run: uvx nox -s publish-package -- --repository testpypi
5555

56-
publish_pypi:
57-
name: Publish to Production PyPI
56+
publish_pypi_and_github:
57+
name: Publish to Production PyPI and GitHub
5858
runs-on: ubuntu-latest
5959
needs: build_and_testpypi
6060

@@ -79,3 +79,8 @@ jobs:
7979
TWINE_USERNAME: __token__
8080
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
8181
run: uvx nox -s publish-python
82+
83+
- name: Publish to GitHub
84+
env:
85+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
86+
run: gh release upload ${{ github.event.inputs.tag }} dist/

0 commit comments

Comments
 (0)