fix: ZMS-44: Add require2faEnabled flag to user (#1035) #428
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| branches: | |
| - master | |
| name: Deploy test instance | |
| jobs: | |
| deploy: | |
| name: Deploy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install SSH key | |
| uses: shimataro/ssh-key-action@v2 | |
| with: | |
| key: ${{ secrets.SSH_KEY }} | |
| known_hosts: ${{ secrets.KNOWN_HOSTS }} | |
| - name: Deploy to server | |
| env: | |
| TARGET_HOST_02: srv-04.emailengine.dev | |
| NODE_ENV: production | |
| SERVICE_NAME: wildduck | |
| id: deploy | |
| run: | | |
| echo $GITHUB_SHA > commit.txt | |
| npm install --omit=dev | |
| tar czf /tmp/${SERVICE_NAME}.tar.gz --exclude .git . | |
| scp -o "UserKnownHostsFile=/dev/null" -o "StrictHostKeyChecking=no" /tmp/${SERVICE_NAME}.tar.gz deploy@${TARGET_HOST_02}: | |
| ssh -o "UserKnownHostsFile=/dev/null" -o "StrictHostKeyChecking=no" deploy@$TARGET_HOST_02 "/opt/deploy.sh ${SERVICE_NAME}" |