summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci-cd.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml
index fd22e7b7..c9ab7b68 100644
--- a/.github/workflows/ci-cd.yml
+++ b/.github/workflows/ci-cd.yml
@@ -93,7 +93,7 @@ jobs:
args: "[Build #${{github.run_id}}](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}): Deploying new version `${{ env.DOCKERHUB_USER }}/${{ env.DOCKER_IMAGE_NAME }}:${{ env.DOCKER_IMAGE_TAG_BUILD }}` ([see changes]({{ EVENT_PAYLOAD.compare }}))..."
- name: Deploy to DigitalOcean Kubernetes
- run: kubectl apply -f kubernetes/server.yml
+ run: kubectl apply -f kubernetes
- name: Verify deployment
run: kubectl rollout status --namespace seven-wonders deployment/seven-wonders
bgstack15