ci: remove CD job (#223)

This commit is contained in:
Rob Ede 2024-05-26 15:16:30 +01:00 committed by GitHub
parent 658f353c23
commit e10d5ea6e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,19 +31,3 @@ jobs:
ghcr.io/${{ github.repository }}:latest
outputs:
digest: ${{ steps.docker_push.outputs.digest }}
deploy:
needs: build-docker-image
runs-on: ubuntu-latest
steps:
- name: Patch and Sync
env:
DIGEST: ${{ needs.build-docker-image.outputs.digest }}
ARGOCD_SERVER: ${{ secrets.ARGOCD_SERVER }}
ARGOCD_AUTH_TOKEN: ${{ secrets.ARGOCD_AUTH_TOKEN }}
run: |
curl -sSL -o argocd https://${ARGOCD_SERVER}/download/argocd-linux-amd64
chmod +x argocd
./argocd app patch deps-rs --patch "{ \"spec\": { \"source\": { \"kustomize\": { \"images\": [\"ghcr.io/deps-rs/deps.rs@${DIGEST}\"] } } } }" --type merge --grpc-web
./argocd app sync deps-rs --grpc-web
./argocd app wait deps-rs --grpc-web