Fixed variable substitution in open door modal #365
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: Continuous Deployment | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
deploy: | |
environment: production | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Composer Install | |
run: composer install --ignore-platform-reqs | |
- name: Run Tests | |
run: vendor/bin/phpunit | |
- name: Deploy to production | |
uses: appleboy/ssh-action@master | |
with: | |
username: ${{ secrets.SSH_USERNAME }} | |
host: ${{ secrets.SSH_HOST }} | |
key: ${{ secrets.SSH_KEY }} | |
script: 'cd /var/www/html && ./deploy/server_deploy.sh' |