Bump follow-redirects from 1.15.2 to 1.15.4 #68
Workflow file for this run
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
name: Build and Deploy | |
on: | |
push: | |
branches: | |
- '**' # Push events on all branches | |
paths-ignore: | |
- '.github/workflows/init.yml' | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 including semver | |
jobs: | |
build_docs: | |
runs-on: ubuntu-22.04 | |
name: Build, Install, Package documentation | |
if: "!contains(github.event.head_commit.message, 'docs skip')" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install credentials | |
run: echo https://$GITHUB_OAUTH:@github.com > $HOME/.git-credentials | |
env: | |
GITHUB_OAUTH: ${{ secrets.CR_PAT_WORKFLOW }} | |
- name: Build | |
run: | | |
npm install | |
npm run antora | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4 | |
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages # The branch the action should deploy to. | |
FOLDER: public # The folder the action should deploy. |