File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ # Triggers deployment of the Nginx reverse proxy configuration for docs.apify.com
2+ # when the configuration file is updated in this repository.
3+ name : Deploy Nginx Configuration
4+
5+ on :
6+ push :
7+ branches :
8+ - master
9+ paths :
10+ - ' nginx.conf'
11+ workflow_dispatch :
12+
13+ jobs :
14+ trigger-deployment :
15+ name : Trigger Nginx deployment
16+ runs-on : ubuntu-latest
17+ steps :
18+ - name : Trigger deployment workflow in apify-docs-private
19+ run : |
20+ gh workflow run deploy-nginx.yaml \
21+ --repo apify/apify-docs-private \
22+ --ref separate-crawlee-docs \
23+ --field deployment=apify-docs
24+ echo "✅ Deployment workflow triggered successfully"
25+ env :
26+ GITHUB_TOKEN : ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments