Skip to content

Update build-and-run.yml #19

Update build-and-run.yml

Update build-and-run.yml #19

Workflow file for this run

name: My First Action
on:
push:
branches: [ main ] # runs every time you push to main
workflow_dispatch: # allows you to trigger manually
jobs:
hello:
runs-on: self-hosted # runs on your thunder-server
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Say hello
run: |
echo "👋 Hello from my self-hosted runner!"
echo "Running on $(hostname)"
echo "Time: $(date)"