Merge branch 'master' into production #23
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 from production branch | |
on: | |
push: | |
branches: | |
- production | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup SSH | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.IC_SSH_KEY }} | |
- name: SSH to server and pull from production branch | |
run: | | |
${{ secrets.IC_SSH }} |