Skip to content

Update workflow_template.yml #2

Update workflow_template.yml

Update workflow_template.yml #2

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 workspace files
run: ls -la
- name: Deploy nginx configuration
run: |
sudo /usr/bin/cp ./nginx_securefit.conf /etc/nginx/conf.d/nginx_securefit.conf
sudo /usr/bin/systemctl reload nginx