Skip to content

Commit

Permalink
ci: remove CD job (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede authored May 26, 2024
1 parent 658f353 commit e10d5ea
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit e10d5ea

Please sign in to comment.