From 33120c40a52678b6440bda92abea94fa4aa0a550 Mon Sep 17 00:00:00 2001 From: Alex Mickelson Date: Mon, 22 Sep 2025 10:53:25 -0600 Subject: [PATCH] simplify build process --- .github/workflows/docker-deploy.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-deploy.yml b/.github/workflows/docker-deploy.yml index d26b5b4..815877f 100644 --- a/.github/workflows/docker-deploy.yml +++ b/.github/workflows/docker-deploy.yml @@ -21,8 +21,7 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Make build script executable - run: chmod +x ./build.sh - - name: Build and push Docker image - run: ./build.sh -t -p \ No newline at end of file + run: | + chmod +x ./build.sh + ./build.sh -t -p \ No newline at end of file