fix: image_url을 S3 기반으로 제공하도록 변경 #45
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: CD | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: create env file | |
run: | | |
touch .env | |
echo "${{ secrets.ENV_VARS }}" >> .env | |
- name: create remote directory | |
uses: appleboy/ssh-action@v0.1.0 | |
with: | |
host: ${{ secrets.HOST }} | |
username: ubuntu | |
key: ${{ secrets.KEY }} | |
script: mkdir -p /home/ubuntu/MGU-Yulliy-server | |
- name: copy source via ssh key | |
uses: burnett01/rsync-deployments@4.1 | |
with: | |
switches: -avzr --delete | |
remote_path: /home/ubuntu/MGU-Yulliy-server | |
remote_host: ${{ secrets.HOST }} | |
remote_user: ubuntu | |
remote_key: ${{ secrets.KEY }} | |
- name: executing remote ssh commands using password | |
uses: appleboy/ssh-action@v0.1.0 | |
with: | |
host: ${{ secrets.HOST }} | |
username: ubuntu | |
key: ${{ secrets.KEY }} | |
script: | | |
chmod +x /home/ubuntu/MGU-Yulliy-server/config/scripts/deploy.sh | |
/home/ubuntu/MGU-Yulliy-server/config/scripts/deploy.sh |