尝试使用actions自动部署。由于我的page仓库和hexo仓库不是一个仓库,所以在官方版本的基础上改了下部署方式。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
| name: Pages
on: push: branches: - master
jobs: build_deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: submodules: recursive - name: Use Node.js 20 uses: actions/setup-node@v4 with: node-version: "20" - name: Cache NPM dependencies uses: actions/cache@v4 with: path: node_modules key: ${{ runner.OS }}-npm-cache restore-keys: | ${{ runner.OS }}-npm-cache - name: Setup pandoc uses: nikeee/setup-pandoc@v1 - name: Install Dependencies run: npm install - name: Build run: npm run build - name: Deploy run: | sudo timedatectl set-timezone "Asia/Shanghai" mkdir -p ~/.ssh/ echo "${{secrets.sshKey}}" > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-keyscan github.com >> ~/.ssh/known_hosts git config --global user.name ${{ github.repository_owner }} git config --global user.email ${{ github.repository_owner }}@user.github.com npm run deploy
|