Skip to content

Commit 01eafb5

Browse files
committed
[fix] #205 키값 줄바꿈 추가
1 parent 457d394 commit 01eafb5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/appstore_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
if: env.MATCH_GIT_PRIVATE_KEY != ''
6060
run: |
6161
mkdir -p "$HOME/.ssh"
62-
echo "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
62+
echo -e "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
6363
chmod 600 "$HOME/.ssh/match_git_key"
6464
6565
eval "$(ssh-agent -s)"

.github/workflows/build_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
if: env.MATCH_GIT_PRIVATE_KEY != ''
4646
run: |
4747
mkdir -p "$HOME/.ssh"
48-
echo "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
48+
echo -e "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
4949
chmod 600 "$HOME/.ssh/match_git_key"
5050
5151
eval "$(ssh-agent -s)"

.github/workflows/develop_hotfix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
if: env.MATCH_GIT_PRIVATE_KEY != ''
5252
run: |
5353
mkdir -p "$HOME/.ssh"
54-
echo "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
54+
echo -e "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
5555
chmod 600 "$HOME/.ssh/match_git_key"
5656
5757
eval "$(ssh-agent -s)"

.github/workflows/testflight_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
if: env.MATCH_GIT_PRIVATE_KEY != ''
5555
run: |
5656
mkdir -p "$HOME/.ssh"
57-
echo "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
57+
echo -e "$MATCH_GIT_PRIVATE_KEY" > "$HOME/.ssh/match_git_key"
5858
chmod 600 "$HOME/.ssh/match_git_key"
5959
6060
eval "$(ssh-agent -s)"

0 commit comments

Comments
 (0)