Skip to content

Commit

Permalink
fix retry loop in devcontainer action and override commands.sh (#4409)
Browse files Browse the repository at this point in the history
  • Loading branch information
guybartal authored Mar 5, 2025
1 parent 39071ce commit 2ff68dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/devcontainer_run_command/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ runs:
shell: bash
run: |
# Write command to a command.sh script file
cat <<EOF >> ./command.sh
cat <<EOF > ./command.sh
#!/bin/bash
set -x
${{ inputs.COMMAND }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_tre_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ jobs:
COMMAND: |
# Loop to retry the make command up to 3 times
for i in {1..3}; do
make bundle-build bundle-publish DIR=${{ matrix.BUNDLE_DIR }} && ec=0 && break || ec=\$? && sleep 30;
make bundle-build bundle-publish DIR=${{ matrix.BUNDLE_DIR }} && ec=0 && break || ec=\$? && sleep 30;
done
# Exit with the last status code
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ENHANCEMENTS:

BUG FIXES:
* Fix the management storage access error while executing `make show-core-output` command, and remove redundant error messages from `mgmtstorage_enable_public_access.sh` script ([#4404](https://github.com/microsoft/AzureTRE/issues/4404))
* Fix retry loop in devcontainer action and override commands.sh [#4409](https://github.com/microsoft/AzureTRE/pull/4409)

## 0.21.0

Expand Down

0 comments on commit 2ff68dc

Please sign in to comment.