Skip to content

Commit 6f05eb7

Browse files
committed
fix(ci): error in tag format
1 parent 7d94e21 commit 6f05eb7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Run semantic release
4848
id: release
4949
run: |
50-
poetry run semantic-release publish --debug
50+
poetry run semantic-release publish
5151
env:
5252
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5353
PYTHON_KEYRING_BACKEND: keyring.backends.null.Keyring
@@ -102,7 +102,7 @@ jobs:
102102
- name: Run semantic release
103103
id: release
104104
run: |
105-
poetry run semantic-release publish --debug
105+
poetry run semantic-release publish
106106
env:
107107
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
108108
PYTHON_KEYRING_BACKEND: keyring.backends.null.Keyring
@@ -159,7 +159,7 @@ jobs:
159159
- name: Run semantic release
160160
id: release
161161
run: |
162-
poetry run semantic-release publish --debug
162+
poetry run semantic-release publish
163163
env:
164164
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
165165
PYTHON_KEYRING_BACKEND: keyring.backends.null.Keyring

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[tool.poetry]
22
name = "archive-downloader"
33
version = "0.1.0"
4-
tag_format = "v{version}"
54
description = "A starter CLI app project in Python"
65
authors = ["Andy Vandaric <[email protected]>"]
76
readme = "README.md"
@@ -26,6 +25,7 @@ version_source = "pyproject"
2625
changelog_file = "CHANGELOG.md"
2726
patch_without_tag = false
2827
commit_parser = "angular"
28+
tag_format = "v{version}"
2929

3030
[tool.semantic_release.changelog]
3131
mode = "update"

0 commit comments

Comments
 (0)