Skip to content

Commit

Permalink
Update build_and_push_minimal.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsan6sha authored Sep 18, 2024
1 parent 6dddafe commit 51deb73
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build_and_push_minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ jobs:
with:
python-version: '3.x' # Set up the Python version you need

- name: Remove existing build folder
run: |
if [ -d "build" ]; then
echo "Removing existing build folder"
rm -rf build
else
echo "No existing build folder found"
fi
- name: Run build script
run: |
chmod +x ./build_image.sh
Expand Down

0 comments on commit 51deb73

Please sign in to comment.