Skip to content

Bump follow-redirects from 1.15.4 to 1.15.6 #437

Bump follow-redirects from 1.15.4 to 1.15.6

Bump follow-redirects from 1.15.4 to 1.15.6 #437

Workflow file for this run

name: deploy blog
on:
push:
pull_request:
types: [opened, synchronize, edited, reopened]
jobs:
deploy-blog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup environment
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Hexo
run: |
npm i -g hexo hexo-cli
- name: Build blog
run: |
npm install --force --save
hexo cl && hexo g
deploy-blog_use-yarn:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup environment
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Hexo
run: |
yarn global add hexo hexo-cli
- name: Build blog
run: |
yarn install
hexo cl && hexo g