Skip to content

Commit

Permalink
fix: current version report
Browse files Browse the repository at this point in the history
  • Loading branch information
Nr18 committed Mar 6, 2024
1 parent 9299e36 commit 9e3eca4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,14 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Check if PyPi release required
id: has-dist-folder
run: test -d dist
run: |-
if [ -d ./dist/ ]; then
echo "::set-output name=folder_exists::true"
else
echo "::set-output name=folder_exists::false"
fi
- name: Publish package distributions to PyPI
if: steps.has-dist-folder.outputs.return-value == '0'
if: steps.has-dist-folder.outputs.folder_exists == 'true'
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
2 changes: 1 addition & 1 deletion aws_iam_login/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from aws_iam_login.credentials import Credentials
from aws_iam_login.application_context import ApplicationContext, ApplicationMessages

__version__ = "0.3.2"
__version__ = "0.3.4"


@click.group(invoke_without_command=True) # type: ignore
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aws-iam-login"
version = "0.3.2"
version = "0.3.4"
description = "Configures STS credentials using a MFA authenticated session."
authors = ["Joris Conijn <[email protected]>"]
license = "Apache2"
Expand Down

0 comments on commit 9e3eca4

Please sign in to comment.