Last active
April 25, 2025 15:00
-
-
Save weibeld/f136048d0a82aacc063f42e684e3c494 to your computer and use it in GitHub Desktop.
GitHub Actions example workflow 1 — Hello World!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: hello-world | |
on: push | |
jobs: | |
my-job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: my-step | |
run: echo "Hello World!" |
Finally, I run the action.
finally, i run the action
Hilow
<script src="https://gist.github.com/weibeld/f136048d0a82aacc063f42e684e3c494.js"></script>
4 revisions 🤣
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So, where does "Hello,world" get written? Github reports "success". I thought it might be in an email, (like the Linux at or batch commands) but none was received. I tried redircting the output to a file in the current directory but that caused an error.