Skip to content

runs on self-hosted

runs on self-hosted #2

Workflow file for this run

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