File tree 2 files changed +37
-1
lines changed
2 files changed +37
-1
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ permissions:
40
40
41
41
jobs :
42
42
build :
43
+ if : " !contains(github.event.head_commit.message, '[skip ci]')" # Skip if commit message contains [skip ci]
43
44
runs-on : ubuntu-latest
44
45
45
46
steps :
83
84
GIT_TOKEN=${{ secrets.SUBMODULE_GITHUB_TOKEN }}
84
85
85
86
deploy :
87
+ if : " !contains(github.event.head_commit.message, '[skip ci]')" # Skip if commit message contains [skip ci]
86
88
permissions :
87
89
contents : none
88
90
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 4
4
push :
5
5
paths :
6
6
- ' plugins/themes/post45/**'
7
- workflow_dispatch : # Add this line to allow manual triggering
7
+ workflow_dispatch : # Allow manual triggering
8
8
9
9
jobs :
10
10
update-submodule :
11
11
runs-on : ubuntu-latest
12
12
13
+ steps :
14
+ - name : Checkout repository
15
+ uses : actions/checkout@v3
16
+ with :
17
+ submodules : recursive
18
+ token : ${{ secrets.SUBMODULE_GITHUB_TOKEN }}
19
+
20
+ - name : Update submodule
21
+ run : |
22
+ git submodule update --remote --merge
23
+ git add plugins/themes/post45
24
+ git commit -m "Update submodule to latest commit [skip ci]"
25
+ git push
26
+ env :
27
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
28
+
29
+ initialize-git-repo :
30
+ runs-on : ubuntu-latest
31
+ needs : update-submodule
32
+
33
+ steps :
34
+ - name : Initialize Git Repository on Azure Web App
35
+ env :
36
+ KUDU_API : https://${{ env.AZURE_WEBAPP_NAME }}.scm.azurewebsites.net/api/command
37
+ KUDU_USER : ${{ env.AZURE_WEBAPP_NAME }}
38
+ KUDU_PASS : ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
39
+ run : |
40
+ curl -u $KUDU_USER:$KUDU_PASS -X POST -d '{"command": "cd /var/www/html/plugins/themes/post45 && git init && git remote add origin https://github.com/Post45-Journal/ojs-theme.git"}' -H "Content-Type: application/json" $KUDU_API
41
+
42
+
43
+ trigger-azure-pull :
44
+ runs-on : ubuntu-latest
45
+ needs : initialize-git-repo
46
+
13
47
steps :
14
48
- name : Run git pull on Azure Web App via Kudu API
15
49
env :
You can’t perform that action at this time.
0 commit comments