Add Tornado SDK to PATH in build workflow #17
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: My First Action | |
| on: | |
| push: | |
| branches: [ main ] # runs every time you push to main | |
| workflow_dispatch: # allows you to trigger manually | |
| jobs: | |
| hello: | |
| runs-on: self-hosted # runs on your thunder-server | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Say hello | |
| run: | | |
| echo "👋 Hello from my self-hosted runner!" | |
| echo "Running on $(hostname)" | |
| echo "Time: $(date)" | |