Skip to content

Commit

Permalink
Merge branch 'master' into enhancement/use_policy_universe_iam_enum
Browse files Browse the repository at this point in the history
  • Loading branch information
jdearmas authored Apr 25, 2023
2 parents 62305c3 + b8d8891 commit 5c820bc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/python-deploy-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@

name: PyPi and Docker Deploy

on: workflow_dispatch

on:
workflow_dispatch:
inputs:
SemVer_level:
description: 'Semantic version level to use (patch,minor,major) https://python-poetry.org/docs/cli/'
required: true
default: 'patch'
jobs:
deploy:

Expand All @@ -29,7 +34,7 @@ jobs:
pip install poetry
- name: Bump version
run: |
poetry version patch
poetry version ${{ github.event.inputs.SemVer_level }}
- name: Commit and push version changes
run: |
ver="$(poetry version -s)"
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 = "pacu"
version = "1.1.5"
version = "1.1.6"
description = "The AWS exploitation framework, designed for testing the security of Amazon Web Services environments."
authors = ["Rhino Assessment Team <[email protected]>"]
license = "BSD-3"
Expand Down

0 comments on commit 5c820bc

Please sign in to comment.