auto_update #646
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
# This is a basic workflow to help you get started with Actions | |
name: Blog deploy | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build-and-deploy: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
PAGE_PRIVATEKEY: ${{ secrets.PAGE_PRIVATEKEY }} | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATEKEY }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
- name: Reconfigure git to use HTTP authentication | |
run: > | |
git config --global url."https://github.com/".insteadOf | |
ssh://[email protected]/ | |
- name: "Add GitHub to the SSH known hosts file" | |
run: | | |
mkdir -p ~/.ssh | |
ssh-keyscan github.com >> ~/.ssh/known_hosts | |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null | |
ssh-add - <<< "$SSH_PRIVATE_KEY" | |
ssh-add -l | |
- name: git init | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "lcj" | |
git status | |
git submodule update --init --recursive | |
# Runs a set of commands using the runners shell | |
- name: Set Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '12.13' | |
- name: 缓存 Hexo | |
uses: actions/cache@v1 | |
id: cache | |
with: | |
path: node_modules | |
key: ${{runner.OS}}-${{hashFiles('**/package-lock.json')}} | |
- name: Npm Install | |
#if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
npm update | |
npm install hexo-cli -g | |
npm install --save | |
npm i hexo -g | |
- name: Hexo Deploy | |
run: | | |
ssh-add -D | |
ssh-add - <<< "$PAGE_PRIVATEKEY" | |
ssh-add -l | |
bash ./sed_images_path.sh | |
hexo clean | |
hexo generate | |
hexo deploy |