Skip to content

Workflow file for this run

name: Hello World Action
# Triggers the workflow on push to the 'main' branch
on:
push:
branches:
- main
jobs:
say-hello:
runs-on: self-hosted
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Print Hello World
run: echo "Hello, World!"
- name: PWD
run: pwd
- name: List files
run: ls -la
- name: multiple
run: env && cat /etc/os-release