Skip to content

fix: 필요없는 아이콘 import 제거 (#316) #15

fix: 필요없는 아이콘 import 제거 (#316)

fix: 필요없는 아이콘 import 제거 (#316) #15

Workflow file for this run

name: Deploy to EC2
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install SSH key
run: |
mkdir -p ~/.ssh
echo "${{ secrets.EC2_PEM_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
- name: Add EC2 to known hosts
run: ssh-keyscan -H ec2-43-200-222-157.ap-northeast-2.compute.amazonaws.com >> ~/.ssh/known_hosts
- name: SSH into EC2 and execute deployment script
run: |
ssh -i ~/.ssh/id_rsa ubuntu@ec2-43-200-222-157.ap-northeast-2.compute.amazonaws.com "cd PICKPLE-client && sh deploy.sh"
- name: Send Slack notification
if: ${{ success() }}
uses: rtCamp/action-slack-notify@v2.1.1
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_MESSAGE: |
:rocket: 배포 완료!
작성자: ${{ github.event.head_commit.author.name }}
메시지: ${{ github.event.head_commit.message }}
:white_check_mark: 서비스가 정상적으로 배포되었습니다. PICKPLE 화이팅!