We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bbb9f6 commit 8a5865cCopy full SHA for 8a5865c
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,22 @@
1
+name: Hello World
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ workflow_dispatch:
7
8
+jobs:
9
+ say-hello:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Greet the world
14
+ run: echo "Hello, GitHub Actions!"
15
16
+ - name: Show current date
17
+ run: date
18
19
+ - name: Show runner information
20
+ run: |
21
+ echo "Operating System: $RUNNER_OS"
22
+ echo "Architecture: $RUNNER_ARCH"
0 commit comments