Skip to content

Instantly share code, notes, and snippets.

@avinashjaingit
Forked from weibeld/01-hello-world.yml
Created January 25, 2024 11:16
Show Gist options
  • Select an option

  • Save avinashjaingit/f442d9d41584df504e8f43d1e4bda16a to your computer and use it in GitHub Desktop.

Select an option

Save avinashjaingit/f442d9d41584df504e8f43d1e4bda16a to your computer and use it in GitHub Desktop.
GitHub Actions example workflow 1 — Hello World!
name: hello-world
on: push
jobs:
my-job:
runs-on: ubuntu-latest
steps:
- name: my-step
run: echo "Hello World!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment