mirror of
https://github.com/Shawn-Shan/fawkes.git
synced 2025-02-24 00:57:06 +05:30
11 lines
186 B
Bash
11 lines
186 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
# Publish the package
|
||
|
poetry publish --build
|
||
|
|
||
|
# Get the current version
|
||
|
VERSION=$(poetry version -s)
|
||
|
|
||
|
# Create and push a Git tag
|
||
|
git tag v$VERSION
|
||
|
git push origin v$VERSION
|