diff --git a/.github/workflows/workflow_template.yml b/.github/workflows/workflow_template.yml new file mode 100644 index 0000000..56c463a --- /dev/null +++ b/.github/workflows/workflow_template.yml @@ -0,0 +1,20 @@ +name: Deploy Nginx Configuration + +on: + push: + branches: + - main + +jobs: + deploy-nginx: + runs-on: self-hosted + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Deploy nginx configuration + run: | + # Copy the configuration file to the nginx directory + sudo cp ./nginx_securefit.conf /etc/nginx/conf.d/nginx_securefit.conf + # Reload nginx to apply the new configuration + sudo systemctl reload nginx