Skip to content

Commit

Permalink
Fixing tag
Browse files Browse the repository at this point in the history
  • Loading branch information
adamspd committed Feb 4, 2024
1 parent 8cb08f9 commit 029433c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
uses: release-drafter/release-drafter@v6
with:
commitish: main
tag: v${{ needs.prepare-and-check.outputs.version }}
tag: v${{ env.RELEASE_VERSION }}
name: Release ${{ env.RELEASE_VERSION }}
version: ${{ env.RELEASE_VERSION }}
env:
Expand All @@ -120,8 +120,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_VERSION: ${{ needs.prepare-and-check.outputs.version }}
with:
tag_name: v${{ needs.prepare-and-check.outputs.version }}
release_name: Release v${{ needs.prepare-and-check.outputs.version }}
tag_name: v${{ env.RELEASE_VERSION }}
release_name: Release ${{ env.RELEASE_VERSION }}
body: ${{ steps.draft_release.outputs.body }}
draft: false
prerelease: false
2 changes: 1 addition & 1 deletion spam_detector_ai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
__description__ = "A package for detecting and filtering spam messages using Machine Learning models."
__package_name__ = "spam-detector-ai"
__url__ = "https://github.com/adamspd/spam-detection-project"
__version__ = "2.1.11"
__version__ = "2.1.12"
__test_version__ = False

0 comments on commit 029433c

Please sign in to comment.