Rename run-on-schedule.ymlold to run-on-schedule.yml #74
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: Debugging with SSH1 | |
| on: push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| # - name: Run script | |
| # run: npm start | |
| # env: | |
| # SECRET_TEST_MESSAGE: ${{ secrets.SECRET_TEST_MESSAGE }} | |
| - name: Try Build | |
| run: ./not-exist-file.sh it bloke build | |
| - name: Start SSH via Ngrok | |
| if: ${{ failure() }} | |
| # run: curl -sL https://gist.githubusercontent.com/retyui/7115bb6acf151351a143ec8f96a7c561/raw/7099b9db76729dc5761da72aa8525f632d8875c9/debug-github-actions.sh | bash | |
| run: curl -sL https://github.com/null395922/github-actions-cron/raw/master/debug-github-actions.sh | bash | |
| env: | |
| # After sign up on the https://ngrok.com/ | |
| # You can find this token here: https://dashboard.ngrok.com/get-started/setup | |
| NGROK_TOKEN: ${{ secrets.NGROK_TOKEN }} | |
| # This password you will use when authorizing via SSH | |
| USER_PASS: ${{ secrets.USER_PASS }} | |
| - name: Don't kill instace | |
| if: ${{ failure() }} | |
| run: sleep 1h # Prevent to killing instance after failure |