Skip to content

Commit

Permalink
cd tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tsviz committed Jul 6, 2023
1 parent 48aca0c commit 54ff581
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@ on:

jobs:
deploy_staging:
runs-on: tsviz-deployment-server
runs-on: ubuntu-latest
environment: STAGE
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Deploy to Kubernetes
run: |
kubectl apply -f deployments/
echo "kubectl apply -f deployments/"
deploy_production:
runs-on: tsviz-deployment-server
runs-on: ubuntu-latest
environment: PROD
needs: [deploy_staging]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Deploy to Kubernetes
run: |
kubectl apply -f deployments/
echo "kubectl apply -f deployments/""

0 comments on commit 54ff581

Please sign in to comment.