Skip to content

Commit db7c6e7

Browse files
committed
Adjust submodule update workflow
- Skip build & deploy if we're just updating the submodule - Update this repo's submodule when pushing to the submodule repo (via webhook) + also do a git pull in Azure.
1 parent b6ba3a6 commit db7c6e7

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

.github/workflows/azure-container-webapp.yml

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ permissions:
4040

4141
jobs:
4242
build:
43+
if: "!contains(github.event.head_commit.message, '[skip ci]')" # Skip if commit message contains [skip ci]
4344
runs-on: ubuntu-latest
4445

4546
steps:
@@ -83,6 +84,7 @@ jobs:
8384
GIT_TOKEN=${{ secrets.SUBMODULE_GITHUB_TOKEN }}
8485
8586
deploy:
87+
if: "!contains(github.event.head_commit.message, '[skip ci]')" # Skip if commit message contains [skip ci]
8688
permissions:
8789
contents: none
8890
runs-on: ubuntu-latest

.github/workflows/update-theme-submodule.yaml

+35-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,46 @@ on:
44
push:
55
paths:
66
- 'plugins/themes/post45/**'
7-
workflow_dispatch: # Add this line to allow manual triggering
7+
workflow_dispatch: # Allow manual triggering
88

99
jobs:
1010
update-submodule:
1111
runs-on: ubuntu-latest
1212

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+
1347
steps:
1448
- name: Run git pull on Azure Web App via Kudu API
1549
env:

0 commit comments

Comments
 (0)