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:49 +00:00
parent ddb915cf4f
commit 32efc3fac8

View file

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