Skip to content

Commit 298eefc

Browse files
authored
Create HelloWorld.yml
1 parent 546d17c commit 298eefc

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/HelloWorld.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: HelloWorld
4+
5+
# Controls when the workflow will run
6+
on:
7+
workflow_dispatch:
8+
9+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
10+
jobs:
11+
# This workflow contains a single job called "build"
12+
build:
13+
# The type of runner that the job will run on
14+
runs-on: azure1
15+
16+
# Steps represent a sequence of tasks that will be executed as part of the job
17+
steps:
18+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
19+
- uses: actions/checkout@v3
20+
21+
# Runs a single command using the runners shell
22+
- name: Run a one-line script
23+
run: echo Hello, world!
24+
25+
# Runs a set of commands using the runners shell
26+
- name: Run a multi-line script
27+
run: |
28+
echo Add other actions to build,
29+
echo test, and deploy your project.

0 commit comments

Comments
 (0)