Skip to content

Commit

Permalink
Sync versions due to action deploy error - 15
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Saporetti Junior committed Sep 21, 2023
1 parent 3230467 commit b439ac1
Show file tree
Hide file tree
Showing 103 changed files with 189 additions and 192 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,16 +84,13 @@ jobs:
if: ${{ inputs.module == 'all' || inputs.module == matrix.module }}
run: |
echo "Deploying module: (${{ matrix.module }}) to: ${{ inputs.pypi_env }} -> ${{ env.PYPI_REPOSITORY }}"
./gradlew "${{ matrix.module }}:publish" -Pno-patch=true ${gradle_debug_params}
- name: Check published package
if: ${{ inputs.module == 'all' || inputs.module == matrix.module }}
run: ./gradlew "${{ matrix.module }}:pypiShow" ${gradle_debug_params}

- name: Commit revision
if: ${{ inputs.module == 'all' || inputs.module == matrix.module }}
run: |
git config --global user.name "$(git log -n 1 --pretty=format:%an)"
git config --global user.email "$(git log -n 1 --pretty=format:%ae)"
git commit -a -m "[@${{ github.actor }}] New PyPi deployment. Module: ${{ matrix.module }}"
git pull --rebase -Xtheirs && git push --atomic origin HEAD
- uses: actions/upload-artifact@master
with:
name: "deploy-workspace-${{ matrix-module }}"
path: |
git status --porcelain | cut -c 4-
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ jobs:
version="$(awk '/./{line=$0} END{print line}' .version)"
echo "VERSION=$version" >> $GITHUB_ENV
git commit -a -m "[@${{ github.actor }}] ${{ inputs.comment }}"
git push origin HEAD
git pull --rebase -Xtheirs && git push --atomic origin HEAD
- name: Tag revision
if: inputs.tag_version
run: |
git tag -a "v${{ env.VERSION }}" -m "[@${{ github.actor }}] New HSPyLib revision v${{ env.VERSION }}"
git push origin "v${{ env.VERSION }}"
git push --atomic origin "v${{ env.VERSION }}"
2 changes: 1 addition & 1 deletion modules/clitt/bumpver.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpver]
current_version = "0.9.94"
current_version = "0.9.95"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "++version {old_version} -> {new_version}"
commit = false
Expand Down
2 changes: 1 addition & 1 deletion modules/clitt/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
app_version = '0.9.94'
app_version = '0.9.95'
app_name = 'hspylib-clitt'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: demo
"""Package initialization."""
Expand All @@ -11,4 +11,4 @@
'term',
'tui'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/application/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: demo.application
"""Package initialization."""
Expand All @@ -9,4 +9,4 @@
'application_demo',
'snake'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/icons/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: demo.icons
"""Package initialization."""
Expand All @@ -9,4 +9,4 @@
'emojis',
'font_awesome'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/icons/emojis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: demo.icons.emojis
"""Package initialization."""

__all__ = [
'emojis_demo'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/icons/font_awesome/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: demo.icons.font_awesome
"""Package initialization."""
Expand All @@ -9,4 +9,4 @@
'awesome_demo',
'demo_icons'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/term/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: demo.term
"""Package initialization."""

__all__ = [
'terminal_demo'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/tui/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: demo.tui
"""Package initialization."""
Expand All @@ -15,4 +15,4 @@
'tui_preferences_demo',
'tui_screen_demo'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/tui/mchoose/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: demo.tui.mchoose
"""Package initialization."""

__all__ = [
'menu_choose_demo'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/tui/mdashboard/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: demo.tui.mdashboard
"""Package initialization."""

__all__ = [
'menu_dashboard_demo'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/tui/menu/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: demo.tui.menu
"""Package initialization."""

__all__ = [
'tui_menu_demo'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/tui/minput/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: demo.tui.minput
"""Package initialization."""
Expand All @@ -9,4 +9,4 @@
'menu_input_demo',
'menu_input_tokens_demo'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/tui/mselect/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: demo.tui.mselect
"""Package initialization."""

__all__ = [
'menu_select_demo'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/tui/table/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: demo.tui.table
"""Package initialization."""

__all__ = [
'table_demo'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
2 changes: 1 addition & 1 deletion modules/clitt/src/main/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Create professional CLI applications

[![License](https://badgen.net/badge/license/MIT/gray)](LICENSE.md)
[![Release](https://badgen.net/badge/release/v0.9.94/gray)](CHANGELOG.md#unreleased)
[![Release](https://badgen.net/badge/release/v0.9.95/gray)](CHANGELOG.md#unreleased)
[![PyPi](https://badgen.net/badge/icon/python?icon=pypi&label)](https://pypi.org/project/hspylib-clitt)
[![GitHub](https://badgen.net/badge/icon/github?icon=github&label)](https://github.com/yorevs/hspylib)
[![Gitter](https://badgen.net/badge/icon/gitter?icon=gitter&label)](https://gitter.im/hspylib/community)
Expand Down
4 changes: 2 additions & 2 deletions modules/clitt/src/main/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: main
"""Package initialization."""

__all__ = [
'clitt'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
2 changes: 1 addition & 1 deletion modules/clitt/src/main/clitt/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.94
0.9.95
4 changes: 2 additions & 2 deletions modules/clitt/src/main/clitt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: main.clitt
"""Package initialization."""
Expand All @@ -10,4 +10,4 @@
'core',
'utils'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/main/clitt/addons/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: main.clitt.addons
"""Package initialization."""
Expand All @@ -9,4 +9,4 @@
'appman',
'widman'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/main/clitt/addons/appman/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: main.clitt.addons.appman
"""Package initialization."""
Expand All @@ -10,4 +10,4 @@
'appman_enums',
'templates'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: main.clitt.addons.appman.templates
"""Package initialization."""

__all__ = [

]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/main/clitt/addons/widman/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: main.clitt.addons.widman
"""Package initialization."""
Expand All @@ -11,4 +11,4 @@
'widgets',
'widman'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: main.clitt.addons.widman.widgets
"""Package initialization."""
Expand All @@ -11,4 +11,4 @@
'widget_send_msg',
'widget_time_calc'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/main/clitt/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: main.clitt.core
"""Package initialization."""
Expand All @@ -12,4 +12,4 @@
'term',
'tui'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/main/clitt/core/exception/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: main.clitt.core.exception
"""Package initialization."""

__all__ = [
'exceptions'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/main/clitt/core/icons/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: main.clitt.core.icons
"""Package initialization."""
Expand All @@ -9,4 +9,4 @@
'emojis',
'font_awesome'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
4 changes: 2 additions & 2 deletions modules/clitt/src/main/clitt/core/icons/emojis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.94
# hspylib-clitt v0.9.95
#
# Package: main.clitt.core.icons.emojis
"""Package initialization."""
Expand All @@ -9,4 +9,4 @@
'emojis',
'face_smiling'
]
__version__ = '0.9.94'
__version__ = '0.9.95'
Loading

0 comments on commit b439ac1

Please sign in to comment.