Skip to content

Commit

Permalink
fix: removed and obvious issue with actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanskodje committed Oct 10, 2024
1 parent e6f5ab2 commit e6e2467
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down

0 comments on commit e6e2467

Please sign in to comment.