build command #29
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: | |
- master # or the branch you want to deploy from | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: SSH and DEPLOY to AWS EC2 | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
shell: bash | |
run: | | |
echo "$SSH_PRIVATE_KEY" > keyfile | |
echo "$HOME/.local/bin" >> $GITHUB_PATH | |
chmod 600 keyfile | |
mkdir -p ~/.ssh | |
cp known_hosts ~/.ssh/known_hosts | |
ssh -t -i keyfile ubuntu@ec2-16-170-250-205.eu-north-1.compute.amazonaws.com "sudo bash ~/deploy.sh" | |