Skip to content

Commit 7970f35

Browse files
committed
first commit
0 parents  commit 7970f35

File tree

6 files changed

+67
-0
lines changed

6 files changed

+67
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Github Actions 실행시켜보기
2+
# name: Workflow의 이름을 설정
3+
# Workflow : 하나의 yml 파일을 하나의 Workflow라고 부른다.
4+
5+
on:
6+
push:
7+
branches:
8+
- main
9+
# 어떤 경우에 이 Github Actions를 실행시키고 싶은지 설정
10+
11+
12+
# 하나의 Workflow는 1개 이상의 Job으로 구성
13+
jobs:
14+
My-Deploy-Job:
15+
# Job을 식별하기 위한 id
16+
runs-on: ubuntu-latest
17+
# Github Actions를 실행시킬 서버 종류 선택 : 우분투의 최신버전
18+
19+
steps:
20+
# Step : 특정 작업을 수행하는 가장 작은 단위
21+
# Job은 여러 Step들로 구성되어 있다.
22+
- name: Hello World 찍기 # Step에 이름 붙이는 기능
23+
run: echo "Hello World" # 실행시킬 명령어 작성
24+
25+
- name: 여러 명령어 문장 작성하기
26+
run: |
27+
echo "Good"
28+
echo "Morning"

.idea/.gitignore

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/githubActions.iml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)