We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8441ddc commit 618c8a7Copy full SHA for 618c8a7
1 file changed
actions/deploy-lambda-function/action.yml
@@ -64,6 +64,12 @@ runs:
64
LAMBDA_TAGS: ${{ inputs.function-tags }}
65
if: inputs.function-tags != ''
66
67
+ # An error occurred (ResourceConflictException) when calling the PublishVersion operation: The operation cannot be performed at this time.
68
+ # An update is in progress for resource: arn:aws:lambda:<region>:***:function:<redacted>
69
+ - name: 'Let the function settle'
70
+ shell: bash
71
+ run: sleep 10 # seconds
72
+
73
- name: 'Cut a version of the lambda'
74
id: publish-version
75
if: inputs.publish-version == 'true'
0 commit comments