Skip to content

build: bump follow-redirects from 1.15.11 to 1.16.0 in /site (#373) #331

build: bump follow-redirects from 1.15.11 to 1.16.0 in /site (#373)

build: bump follow-redirects from 1.15.11 to 1.16.0 in /site (#373) #331

Workflow file for this run

# Workflow for updating the documentation website
---
name: Update Documentation
# Documentation updates can happen in different ways; allow only one at a time
concurrency: release
on:
# Allow running this workflow manually from the Actions tab
workflow_dispatch:
push:
branches:
- main
jobs:
Update-Documentation:
name: Update the documentation
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: true
# Full history needed to show correct last update time/author
# Ref: https://github.com/facebook/docusaurus/issues/2798
fetch-depth: 0
- name: Install local website package
working-directory: ./site
run: npm ci
- name: Build documentation website
working-directory: ./site
run: npm run build
- name: Deploy documentation website
working-directory: ./site
env:
GIT_USER: 'phylum-bot'
GIT_PASS: ${{ secrets.GH_RELEASE_PAT }}
GIT_USER_NAME: 'phylum-bot'
GIT_USER_EMAIL: '69485888+phylum-bot@users.noreply.github.com'
run: npm run deploy