We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cee7549 commit b6ba3a6Copy full SHA for b6ba3a6
.github/workflows/update-theme-submodule.yaml
@@ -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