app-store: improve screenshots #35
Workflow file for this run
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: rust tagged release in main CI | |
| on: | |
| push: | |
| tags: ['v[0-9].[0-9]+.[0-9]+'] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - name: build and deploy hypedriver | |
| uses: appleboy/ssh-action@master | |
| with: | |
| host: ${{ secrets.SSH_PROD_API_HOST }} | |
| username: ${{ secrets.SSH_PROD_USER }} | |
| key: ${{ secrets.SSH_PROD_API_ED25519KEY }} | |
| port: ${{ secrets.SSH_PROD_PORT }} | |
| command_timeout: 60m | |
| script: | | |
| ~/hosting_backend/smd/backend/production/smd_scripts/call-build-hyperdrive.sh |