fix gitea workflows para nueva estructura del repo
Los workflows ahora usan deploy/Dockerfile correctamente y referencian el script de inicio desde la carpeta deploy.
This commit is contained in:
@@ -21,7 +21,7 @@ jobs:
|
||||
|
||||
- name: Build and push snatchgame
|
||||
run: |
|
||||
docker build -t $REG/snatchgame:${{ github.sha }} -t $REG/snatchgame:latest .
|
||||
docker build -f deploy/Dockerfile -t $REG/snatchgame:${{ github.sha }} -t $REG/snatchgame:latest .
|
||||
docker push $REG/snatchgame:${{ github.sha }}
|
||||
docker push $REG/snatchgame:latest
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ jobs:
|
||||
|
||||
- name: Build and push snatchgame
|
||||
run: |
|
||||
docker build -t $REG/snatchgame:latest .
|
||||
docker build -f deploy/Dockerfile -t $REG/snatchgame:latest .
|
||||
docker push $REG/snatchgame:latest
|
||||
|
||||
# Deploy a Google Cloud VM
|
||||
|
||||
Reference in New Issue
Block a user