Update workflow_template.yml #5
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 Nginx Configuration | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy-nginx: | |
| runs-on: self-hosted | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: List repository files | |
| run: ls -la | |
| - name: Deploy nginx configuration | |
| run: | | |
| sudo /usr/bin/cp -v ./nginx_securefit.conf /etc/nginx/conf.d/nginx_securefit.conf | |
| sudo /usr/sbin/nginx -t | |
| sudo /usr/bin/systemctl reload nginx |