Merge pull request #239 from aula-app/chore/changelog #90
This file contains hidden or 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: Update test backend | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| jobs: | |
| build: | |
| runs-on: self-hosted | |
| env: | |
| CI: true | |
| LOCAL: dev | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Copy files | |
| run: | | |
| cp -vr * /var/www-aula-dev/api | |
| echo "Instances backend updated" | |
| # /home/actions-runner/recreate_db.sh | |
| # echo "Database recreated" | |
| shell: bash |