chore: 스크립트 파일명 변경 #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Kerdy Backend Dev Server CI/CD | |
on: | |
push: | |
branches: ["Feature/#68-배포_스크립트를_슬랙_앱과_연동"] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- name: deploy | |
run: ~/deploy.sh | |
- name: send slack message | |
uses: 8398a7/action-slack@v3 | |
with: | |
mention: 'here' | |
if_mention: failure | |
status: ${{ job.status }} | |
fields: workflow,job,commit,message,ref,author,took | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
if: always() |