runs on self-hosted #2
Workflow file for this run
This file contains 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: Hello World Workflow | |
on: | |
push: | |
branches: | |
- '**' # Triggers the workflow on push to the 'main' branch | |
jobs: | |
hello_world_job: | |
runs-on: self-hosted # Specifies the runner to use | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 # Checks out the repository code | |
- name: Say Hello | |
run: echo "Hello, World!!" # Executes a shell command |