fix: update Docker image context and tags in deploy workflow
- Changed the Docker build context to './apps/web' for better organization. - Updated the image tag from 'namespace/example:latest' to 'killercf/sgc:latest' to reflect the correct repository.
This commit is contained in:
4
.github/workflows/deploy.yml
vendored
4
.github/workflows/deploy.yml
vendored
@@ -21,10 +21,10 @@ jobs:
|
|||||||
- name: Build and push Docker image
|
- name: Build and push Docker image
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
context: .
|
context: ./apps/web
|
||||||
file: ./Dockerfile
|
file: ./Dockerfile
|
||||||
push: true
|
push: true
|
||||||
# Make sure to replace with your own namespace and repository
|
# Make sure to replace with your own namespace and repository
|
||||||
tags: |
|
tags: |
|
||||||
namespace/example:latest
|
killercf/sgc:latest
|
||||||
platforms: linux/amd64
|
platforms: linux/amd64
|
||||||
Reference in New Issue
Block a user