Create demo.yml #1
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: Self-hosted Action Demo | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: self-hosted | |
| steps: | |
| - name: Print hello | |
| run: echo "Hello from self-hosted runner" |