44 lines
1.3 KiB
YAML
44 lines
1.3 KiB
YAML
name: Publish Markdown Files
|
|
env:
|
|
BLOG_REPO: matthewwong525/linked-blog-starter
|
|
PUBLISH_DIR: . # root directory
|
|
MD_DIR: temp_md
|
|
BLOG_DIR: temp_blog
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
path: ${{ env.MD_DIR }}
|
|
- name: Checkout linked blog starter repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
path: ${{ env.BLOG_DIR }}
|
|
repository: ${{ env.BLOG_REPO }}
|
|
- name: Install Rust / cargo
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
- name: Install and run obsidian-export
|
|
run: |
|
|
cargo install obsidian-export
|
|
rm -rf ${{ env.BLOG_DIR }}/_commonMD && mkdir ${{ env.BLOG_DIR }}/_commonMD
|
|
~/.cargo/bin/obsidian-export ./${{ env.MD_DIR }}/${{ env.PUBLISH_DIR }} ${{ env.BLOG_DIR }}/_commonMD
|
|
- name: Move blog dir to currDir
|
|
run: |
|
|
cp -r ${{ env.BLOG_DIR }}/. .
|
|
rm -rf ${{ env.BLOG_DIR }}
|
|
rm -rf ${{ env.MD_DIR }}
|
|
- name: Deploy Vercel
|
|
uses: amondnet/vercel-action@v20
|
|
with:
|
|
# TODO: Update Github Secrets with values
|
|
vercel-token: ${{ secrets.VERCEL_TOKEN }} # Required
|
|
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} # Required
|
|
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }} # Required
|