Skip to content

chore: experiment with the workflow file #2

chore: experiment with the workflow file

chore: experiment with the workflow file #2

Workflow file for this run

name: GitHub Workflow Template
on: [push]
jobs:
workflow-job:
name: Sample GitHub Workflow
runs-on: self-hosted
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Run "Hello World!"
run: echo "Hello World!"
second-job:
name: Second Workflow
runs-on: self-hosted
steps:
- name: Echo "Second Job"
run: echo "Second Job!"