mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
Merge pull request #120 from Flipper-Zero/Deploy-wiki-script-improvements
Rewrite images path to absolute in wiki repo
This commit is contained in:
commit
dd091e43ab
2 changed files with 8 additions and 0 deletions
6
.github/deploy_wiki.sh
vendored
6
.github/deploy_wiki.sh
vendored
|
@ -63,6 +63,12 @@ if [ ! -r "$tmp_dir/Home.md" ]; then
|
||||||
rsync -q -a "$GITHUB_WORKSPACE/README.md" "$tmp_dir/Home.md"
|
rsync -q -a "$GITHUB_WORKSPACE/README.md" "$tmp_dir/Home.md"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
debug "Rewriting images path to absolute"
|
||||||
|
(
|
||||||
|
cd "$tmp_dir" || exit 1
|
||||||
|
find . -type f -exec sed -Ei 's@([ (])([^( ]+)(\/wiki_static\/.+?\.(png|jpe?g|svg)[ \)])@\1https://github.com/Flipper-Zero/flipperzero-firmware-community/raw/master\3@' {} \;
|
||||||
|
)
|
||||||
|
|
||||||
debug "Committing and pushing changes"
|
debug "Committing and pushing changes"
|
||||||
(
|
(
|
||||||
cd "$tmp_dir" || exit 1
|
cd "$tmp_dir" || exit 1
|
||||||
|
|
2
.github/workflows/publish_wiki.yml
vendored
2
.github/workflows/publish_wiki.yml
vendored
|
@ -4,6 +4,8 @@ name: Publish the wiki
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
|
paths:
|
||||||
|
- "wiki"
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
Loading…
Reference in a new issue