fix: .json 경로 루트 디렉토리로 수정 #69
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 to EC2 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@master | |
- name: create env file | |
run: | | |
touch .env | |
echo "${{ secrets.ENV_VARS }}" >> .env | |
- name: create json file | |
uses: jsdaniell/[email protected] | |
with: | |
name: "extended-medium-423214-k4-3cd01a759605.json" | |
json: ${{ secrets.CHATGPT }} | |
dir: '.' | |
- name: create remote directory | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.HOST }} | |
username: ubuntu | |
key: ${{ secrets.KEY }} | |
script: mkdir -p /home/ubuntu/srv/ubuntu | |
- name: copy source via ssh key | |
uses: burnett01/[email protected] | |
with: | |
switches: -avzr --delete | |
remote_path: /home/ubuntu/srv/ubuntu/ | |
remote_host: ${{ secrets.HOST }} | |
remote_user: ubuntu | |
remote_key: ${{ secrets.KEY }} | |
- name: executing remote ssh commands using password | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ubuntu | |
key: ${{ secrets.KEY }} | |
script: | | |
sh /home/ubuntu/srv/ubuntu/config/scripts/deploy.sh |