Skip to content

second commit

second commit #2

Workflow file for this run

name: Github Actions 실행시켜보기
on:
push:
branches:
- main
jobs:
My-Deploy-Job: #작업의 아이디
runs-on: ubuntu-latest #작업이 실행될 러너
steps: #스텝 아래에는 -로 들여쓰기 해야 함.
- name: Hello world 찍기
run: echo "Hello World"
- name: 여러 명령어 문장 작성하기
run: |
echo "Good"
echo "Morning"