Skip to content

Commit

Permalink
cd: fix typo in deployment workflows (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie-XIAO authored Dec 8, 2024
1 parent da292e1 commit 2d65be2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
run: |
cd deploy
printf "%s" "${{ secrets.VERITAS_TRIAL_SERVICE_KEY }}" > /tmp/veritas-trial-service.json
printf "%s" "${{ secrets.SSL_CERTIFICATE_CRT }}" > /tmp/certificate.crt"
printf "%s" "${{ secrets.SSL_PRIVATE_KEY }}" > /tmp/private.key"
printf "%s" "${{ secrets.SSL_CERTIFICATE_CRT }}" > /tmp/certificate.crt
printf "%s" "${{ secrets.SSL_PRIVATE_KEY }}" > /tmp/private.key
make gh-actions command="./deploy-app.sh --skip-rebuild-images=${{ inputs.skip-rebuild-images }}"
rm /tmp/veritas-trial-service.json
rm /tmp/certificate.crt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-chromadb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:
run: |
cd deploy
printf "%s" "${{ secrets.VERITAS_TRIAL_SERVICE_KEY }}" > /tmp/veritas-trial-service.json
printf "%s" "${{ secrets.SSL_CERTIFICATE_CRT }}" > /tmp/certificate.crt"
printf "%s" "${{ secrets.SSL_PRIVATE_KEY }}" > /tmp/private.key"
printf "%s" "${{ secrets.SSL_CERTIFICATE_CRT }}" > /tmp/certificate.crt
printf "%s" "${{ secrets.SSL_PRIVATE_KEY }}" > /tmp/private.key
make gh-actions command="./deploy-chromadb.sh"
make gh-actions command="./deploy-pipeline.sh --skip-rebuild-images=${{ inputs.skip-rebuild-images-pipeline }}"
make gh-actions command="./deploy-app.sh --skip-rebuild-images=${{ inputs.skip-rebuild-images-app }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
run: |
cd deploy
printf "%s" "${{ secrets.VERITAS_TRIAL_SERVICE_KEY }}" > /tmp/veritas-trial-service.json
printf "%s" "${{ secrets.SSL_CERTIFICATE_CRT }}" > /tmp/certificate.crt"
printf "%s" "${{ secrets.SSL_PRIVATE_KEY }}" > /tmp/private.key"
printf "%s" "${{ secrets.SSL_CERTIFICATE_CRT }}" > /tmp/certificate.crt
printf "%s" "${{ secrets.SSL_PRIVATE_KEY }}" > /tmp/private.key
make gh-actions command="./deploy-pipeline.sh --skip-rebuild-images=${{ inputs.skip-rebuild-images }}"
rm /tmp/veritas-trial-service.json
rm /tmp/certificate.crt
Expand Down

0 comments on commit 2d65be2

Please sign in to comment.