first draft
parent
fda86de32d
commit
22ed1169e8
@ -0,0 +1,3 @@
|
|||||||
|
FROM alpine:3
|
||||||
|
COPY copy-posts.sh /bin/copy-posts
|
||||||
|
|
@ -0,0 +1,10 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
# NOTES=$(find Resources/blog/ type/ f -not -path "*drafts/*" -name "*.md" | basename {}|cut -d"." -f1| xargs -n1 mkdir -p "cicd_blog/contents/posts/{}")
|
||||||
|
NOTES=$(find Resources/blog/ -type f -not -path "*drafts/*" -name "*.md" )
|
||||||
|
|
||||||
|
for n in $NOTES; do
|
||||||
|
BASE=$(basename $n|cut -d'.' -f1)
|
||||||
|
mkdir -vp cicd_blog/content/posts/$BASE
|
||||||
|
echo cp -v $n cicd_blog/content/posts/$BASE/index.md
|
||||||
|
done
|
Loading…
Reference in New Issue