Skip to content

Commit bf2399d

Browse files
committed
hotfix: Discord 알림 step들에서 shell: bash 제거
1 parent dd42e15 commit bf2399d

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

.github/actions/deploy-module/action.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ runs:
115115
uses: tsickert/discord-webhook@b217a69502f52803de774ded2b1ab7c282e99645
116116
if: success() && inputs.environment == 'dev'
117117
continue-on-error: true
118-
shell: bash
119118
with:
120119
webhook-url: ${{ inputs.discord-webhook-url }}
121120
embed-title: "✅ [${{ github.repository }}] Development Deploy Succeeded - ${{ inputs.module }}"
@@ -131,7 +130,6 @@ runs:
131130
uses: tsickert/discord-webhook@b217a69502f52803de774ded2b1ab7c282e99645
132131
if: success() && inputs.environment == 'prod'
133132
continue-on-error: true
134-
shell: bash
135133
with:
136134
webhook-url: ${{ inputs.discord-webhook-url }}
137135
content: "🚀 **Production Deploy Succeeded!**"
@@ -147,7 +145,6 @@ runs:
147145
uses: tsickert/discord-webhook@b217a69502f52803de774ded2b1ab7c282e99645
148146
if: failure() && inputs.environment == 'dev'
149147
continue-on-error: true
150-
shell: bash
151148
with:
152149
webhook-url: ${{ inputs.discord-webhook-url }}
153150
embed-title: "❌ [${{ github.repository }}] Development Deploy Failed - ${{ inputs.module }}"
@@ -163,7 +160,6 @@ runs:
163160
uses: tsickert/discord-webhook@b217a69502f52803de774ded2b1ab7c282e99645
164161
if: failure() && inputs.environment == 'prod'
165162
continue-on-error: true
166-
shell: bash
167163
with:
168164
webhook-url: ${{ inputs.discord-webhook-url }}
169165
content: "🚨 **Production Deploy Failed!**"

0 commit comments

Comments
 (0)