👷 Set up Pandoc on GitHub Actions #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Hexo Deploy Legacy | |
on: | |
push: | |
branches: | |
- source | |
env: | |
POST_ASSET_IMAGE_CDN: false | |
BLOG_MIGRATION_NOTICE: true | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Checkout theme repo | |
uses: actions/checkout@v4 | |
with: | |
repository: prinsss/hexo-theme-murasaki | |
ref: master | |
path: themes/murasaki | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Cache pnpm modules | |
uses: actions/cache@v3 | |
id: pnpm-cache | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm- | |
- name: Set up pnpm and install dependencies | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8.10.2 | |
run_install: | | |
args: [--prefer-offline, --frozen-lockfile] | |
- name: Set up environment | |
env: | |
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} | |
run: | | |
sudo timedatectl set-timezone "Asia/Shanghai" | |
mkdir -p ~/.ssh | |
echo "$DEPLOY_KEY" > ~/.ssh/id_rsa | |
chmod 600 ~/.ssh/id_rsa | |
ssh-keyscan github.com >> ~/.ssh/known_hosts | |
- name: Set up Pandoc | |
uses: nikeee/setup-pandoc@v1 | |
- name: Deploy | |
run: | | |
npx hexo deploy --generate |