Skip to content

Commit a0e5ec0

Browse files
chore: update github action config
1 parent 00f3638 commit a0e5ec0

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/release-build.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@ jobs:
1919

2020
- name: setup-pypi
2121
run: |
22-
poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
2322
poetry self add poetry-pyinstaller-plugin
2423
poetry self add poetry-plugin-taskipy
2524
2625
- name: build
27-
run: poetry publish --build
26+
run: |
27+
poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
28+
poetry publish --build
2829
2930
- name: Release
3031
uses: softprops/action-gh-release@v2

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
[tool.poetry]
22
name = "repo-scaffold"
3-
version = "0.2.0"
3+
version = "0.1.0"
44
description = "shawn deng repo temple project"
55
authors = ["colyerdeng <[email protected]>"]
66
license = "MIT"
7-
readme = {file = "README.md", content-type = "text/markdown"}
7+
readme = "README.md"
8+
include = [
9+
"template-python/**/*"
10+
]
811

912
[tool.poetry.dependencies]
1013
python = "^3.12"
1114
cookiecutter = "^2.6.0"
1215
click = "^8.1.8"
13-
githubkit = "^0.12.2"
1416

1517
[tool.poetry.group.dev.dependencies]
1618
ruff = "^0.8.4"

0 commit comments

Comments
 (0)