We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02443d5 commit 1a5ab33Copy full SHA for 1a5ab33
.github/workflows/update-submodule.yml …ithub/workflows/update-blog-contents.yml.github/workflows/update-submodule.yml renamed to .github/workflows/update-blog-contents.yml
@@ -2,6 +2,9 @@ name: Update Content on Dispatch
2
on:
3
repository_dispatch:
4
types: [content-update]
5
+ push:
6
+ branches:
7
+ - main
8
jobs:
9
update:
10
runs-on: ubuntu-latest
@@ -13,7 +16,7 @@ jobs:
13
16
- name: Clone content repo
14
17
run: |
15
18
rm -rf src/content
- git clone https://github.com/smaudd/lowtech-blog src/content
19
+ git clone https://github.com/deviceofchoice/blog.git src/content
20
rm -rf src/content/.git # Remove .git to avoid nested repo issues
21
- name: Commit and push changes
22
0 commit comments