Skip to content

Commit

Permalink
Teste release automático
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianosan committed Nov 11, 2024
1 parent 4dcb30d commit 2d02a2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Set release version
id: get_version
run: |
latest_tag=$(git tag -l "lambda_functions_v*" --sort=-v:refname | head -n 1)
latest_tag=$(git tag -l "lambda_functions_v*" | sort -V | tail -n 1)
echo "latest_tag is $latest_tag"
Expand Down
1 change: 1 addition & 0 deletions lambda_functions/lambda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,4 +338,5 @@ def handle(self, handler_input, exception):
sb.add_request_handler(CancelOrStopIntentHandler())
sb.add_request_handler(SessionEndedRequestHandler())
sb.add_exception_handler(CatchAllExceptionHandler())

lambda_handler = sb.lambda_handler()

0 comments on commit 2d02a2e

Please sign in to comment.