We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fa3de6 commit 8808bf1Copy full SHA for 8808bf1
.github/workflows/ci-cd.yml
@@ -129,11 +129,10 @@ jobs:
129
key: ${{ secrets.CD_SSH_KEY }}
130
port: ${{ secrets.CD_PORT }}
131
script: |
132
- export DEPLOY_TAG='${{ steps.tag.outputs.value }}'
133
if [ "${{ github.ref_name }}" = "staging" ]; then
134
- bash -lc '/srv/docsa-stg/infra/deploy.sh'
+ export DEPLOY_TAG='${{ steps.tag.outputs.value }}'
+ bash -lc '/srv/docsa/infra/deploy.sh staging'
135
else
136
- bash -lc '/srv/docsa/infra/deploy.sh'
137
- fi
138
-
139
+ bash -lc '/srv/docsa/infra/deploy.sh dev'
+ fi
0 commit comments