Skip to content

Commit 029433c

Browse files
committed
Fixing tag
1 parent 8cb08f9 commit 029433c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
uses: release-drafter/release-drafter@v6
108108
with:
109109
commitish: main
110-
tag: v${{ needs.prepare-and-check.outputs.version }}
110+
tag: v${{ env.RELEASE_VERSION }}
111111
name: Release ${{ env.RELEASE_VERSION }}
112112
version: ${{ env.RELEASE_VERSION }}
113113
env:
@@ -120,8 +120,8 @@ jobs:
120120
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
121121
RELEASE_VERSION: ${{ needs.prepare-and-check.outputs.version }}
122122
with:
123-
tag_name: v${{ needs.prepare-and-check.outputs.version }}
124-
release_name: Release v${{ needs.prepare-and-check.outputs.version }}
123+
tag_name: v${{ env.RELEASE_VERSION }}
124+
release_name: Release ${{ env.RELEASE_VERSION }}
125125
body: ${{ steps.draft_release.outputs.body }}
126126
draft: false
127127
prerelease: false

spam_detector_ai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
__description__ = "A package for detecting and filtering spam messages using Machine Learning models."
55
__package_name__ = "spam-detector-ai"
66
__url__ = "https://github.com/adamspd/spam-detection-project"
7-
__version__ = "2.1.11"
7+
__version__ = "2.1.12"
88
__test_version__ = False

0 commit comments

Comments
 (0)