Eventクラスの作成、各種Guardの作成などによるRoomモジュールのリファクタ (#143) #110
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: Deploy | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
deploy: | |
name: deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Deploy | |
run: | | |
echo "${{ secrets.EC2_SSH_KEY }}" > ssh_key | |
chmod 600 ssh_key | |
ssh -oStrictHostKeyChecking=no -i ssh_key [email protected] "cd /home/ubuntu/pong && git fetch --all && git checkout ${{ github.sha }} && make prod" |