Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

fix: 提取掘金图片至本地以修复防盗链的问题 (#384) #70

fix: 提取掘金图片至本地以修复防盗链的问题 (#384)

fix: 提取掘金图片至本地以修复防盗链的问题 (#384) #70

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- master
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
if: github.repository == 'compose-museum/jetpack-compose-book'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- name: Install dependencies
run: npm ci
- name: Build website
run: npm run-script build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
user_name: github-actions[bot]
user_email: 41898282+github-actions[bot]@users.noreply.github.com