Skip to content

Bump follow-redirects from 1.15.2 to 1.15.4 (#201) #67

Bump follow-redirects from 1.15.2 to 1.15.4 (#201)

Bump follow-redirects from 1.15.2 to 1.15.4 (#201) #67

Workflow file for this run

# GitHub Action Docs
name: docs
on:
push:
branches:
- master
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout ✅
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Install and Build 🏗️
uses: actions/setup-node@v3
with:
node-version: '16.x'
- run: |
yarn install
yarn docs:build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: docs/.vuepress/dist # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch