diff --git a/.github/workflows/deploy-backend.yaml b/.github/workflows/deploy-backend.yaml index d5021d8..03b967b 100644 --- a/.github/workflows/deploy-backend.yaml +++ b/.github/workflows/deploy-backend.yaml @@ -46,7 +46,7 @@ jobs: restore-keys: | ${{ runner.os }}-gradle-cache- - - name: Build backend + - name: "Build backend" run: ./gradlew buildBackend env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -57,7 +57,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - name: "Build and push backend docker image" // TODO: Ensure we cache the gradlew builds!!! + - name: "Build and push backend docker image" run: | docker build --tag ${{ env.IMAGE_NAME }} -f backend/Dockerfile --pull backend docker push ${{ env.IMAGE_NAME }}