Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
# Build and push API image
- name: Build and push API image
id: api_push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./api
file: ./api/Dockerfile
Expand All @@ -95,7 +95,7 @@ jobs:
# Build and push Web image
- name: Build and push Web image
id: web_push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./web
file: ./web/Dockerfile
Expand All @@ -109,7 +109,7 @@ jobs:
# Build and push Worker image (same as API with different entrypoint)
- name: Build and push Worker image
id: worker_push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./api
file: ./api/Dockerfile
Expand Down