Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Commit

Permalink
[WEAV-118] discord noti workflow 문법 오류 수정 (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
waterfogSW authored Jan 30, 2024
1 parent bbed23e commit 7c5df29
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions .github/workflows/develop_server_deployer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@ jobs:
with:
webhook_id: ${{ secrets.DEVELOP_SERVER_RELEASE_DISCORD_NOTI_ID }}
webhook_token: ${{ secrets.DEVELOP_SERVER_RELEASE_DISCORD_NOTI_TOKEN_SECRET }}
message: """
🛰️Server Deployment Start (Dev)
message: |
🛰️ Server Deployment Start (Dev)
🛢️Repository : ${{ github.repository }}
🎋Branch : ${{ github.ref }}
🔁Run Attempt : ${{ github.run_attempt }}
🤗Actor : ${{ github.triggering_actor }}
"""
🛢️ Repository : ${{ github.repository }}
🎋 Branch : ${{ github.ref }}
🔁 Run Attempt : ${{ github.run_attempt }}
🤗 Actor : ${{ github.triggering_actor }}
- name: Copy Docker Compose file to server
uses: appleboy/scp-action@master
Expand Down Expand Up @@ -72,11 +71,10 @@ jobs:
with:
webhook_id: ${{ secrets.DEVELOP_SERVER_RELEASE_DISCORD_NOTI_ID }}
webhook_token: ${{ secrets.DEVELOP_SERVER_RELEASE_DISCORD_NOTI_TOKEN_SECRET }}
message: """
🛰️Server Deployment Complete (Dev)
message: |
🛰️ Server Deployment Complete (Dev)
🛢️Repository : ${{ github.repository }}
🎋Branch : ${{ github.ref }}
🔁Run Attempt : ${{ github.run_attempt }}
🤗Actor : ${{ github.triggering_actor }}
"""
🛢️ Repository : ${{ github.repository }}
🎋 Branch : ${{ github.ref }}
🔁 Run Attempt : ${{ github.run_attempt }}
🤗 Actor : ${{ github.triggering_actor }}

0 comments on commit 7c5df29

Please sign in to comment.