Skip to content

Commit b6ba3a6

Browse files
committed
Add workflow for updating Post45 theme
1 parent cee7549 commit b6ba3a6

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Update Post45 Theme Submodule
2+
3+
on:
4+
push:
5+
paths:
6+
- 'plugins/themes/post45/**'
7+
workflow_dispatch: # Add this line to allow manual triggering
8+
9+
jobs:
10+
update-submodule:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Run git pull on Azure Web App via Kudu API
15+
env:
16+
KUDU_API: https://${{ env.AZURE_WEBAPP_NAME }}.scm.azurewebsites.net/api/command
17+
KUDU_USER: ${{ env.AZURE_WEBAPP_NAME }}
18+
KUDU_PASS: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
19+
run: |
20+
curl -u $KUDU_USER:$KUDU_PASS -X POST -d '{"command": "cd /var/www/html/plugins/themes/post45 && git pull origin main"}' -H "Content-Type: application/json" $KUDU_API

0 commit comments

Comments
 (0)