Merge pull request #4188 from LiteFarmOrg/LF-5318-2-unsupported-langu… #1463
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
| name: "Deploy" | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - integration | |
| concurrency: beta-deploy | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Read deploy script contents | |
| id: script | |
| uses: juliangruber/read-file-action@v1 | |
| with: | |
| path: beta-deploy.sh | |
| - name: Deploy over SSH | |
| uses: appleboy/ssh-action@v0.1.7 | |
| with: | |
| script_stop: true | |
| host: ${{ secrets.BETA_SSH_HOST }} | |
| username: ${{ secrets.BETA_SSH_USER_NEW }} | |
| passphrase: ${{ secrets.BETA_SSH_PASS_NEW }} | |
| key: ${{ secrets.BETA_SSH_KEY_NEW }} | |
| command_timeout: 20m | |
| script: ${{ steps.script.outputs.content }} |