test(actions): missings secrets values #3
Workflow file for this run
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: CI/CD Pipeline | |
on: | |
push: | |
branches: [ staging ] | |
jobs: | |
test: # we need to make a console log to see if the job is running | |
runs-on: ubuntu-latest | |
steps: | |
- name: Console log | |
run: echo ${{ secrets.HOST_DNS }} ${{ secrets.USERNAME }} ${{ secrets.EC2_SSH_KEY }} | |
continuous-deployment: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Executing remote ssh commands using ssh key | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST_DNS }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.EC2_SSH_KEY }} | |
script: | | |
cd /home/ubuntu/dist | |
git pull origin staging | |
yarn | |
yarn build | |
sudo pm2 restart all |