ci: update image namespace to BuzzParty org
Some checks are pending
Build and Deploy / deploy (push) Waiting to run

This commit is contained in:
djg 2026-09-21 22:35:48 +00:00
parent 572d5bfa94
commit 738fef469c

View file

@ -15,18 +15,18 @@ jobs:
- name: Build image
run: |
docker build \
-t git.ch4t.buzz/djg/bestdadjokes:${{ github.sha }} \
-t git.ch4t.buzz/djg/bestdadjokes:latest \
-t git.ch4t.buzz/buzzparty/bestdadjokes:${{ github.sha }} \
-t git.ch4t.buzz/buzzparty/bestdadjokes:latest \
.
- name: Push to registry
run: |
docker push git.ch4t.buzz/djg/bestdadjokes:${{ github.sha }}
docker push git.ch4t.buzz/djg/bestdadjokes:latest
docker push git.ch4t.buzz/buzzparty/bestdadjokes:${{ github.sha }}
docker push git.ch4t.buzz/buzzparty/bestdadjokes:latest
- name: Roll out to k8s
run: |
kubectl set image deployment/static-bdj \
nginx=git.ch4t.buzz/djg/bestdadjokes:${{ github.sha }} \
nginx=git.ch4t.buzz/buzzparty/bestdadjokes:${{ github.sha }} \
-n default
kubectl rollout status deployment/static-bdj -n default --timeout=120s