Skip to content

chore(deps): update all non-major dependencies (#413) #224

chore(deps): update all non-major dependencies (#413)

chore(deps): update all non-major dependencies (#413) #224

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
tags:
- 'v*'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build Documentation
runs-on: ubuntu-latest
if: github.repository_owner == 'sapphiredev'
outputs:
NAME: ${{ steps.env.outputs.NAME }}
TYPE: ${{ steps.env.outputs.TYPE }}
SHA: ${{ steps.env.outputs.SHA }}
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Use Node.js v20
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
registry-url: https://registry.npmjs.org/
- name: Install Dependencies
run: yarn --immutable
- name: Build Documentation
run: yarn docs
- name: Upload Documentation Artifacts
uses: actions/upload-artifact@v4
with:
name: docs
path: docs/api.json
- name: Set Output
id: env
run: |
echo "NAME=${GITHUB_REF_NAME}" >> $GITHUB_OUTPUT
echo "TYPE=${GITHUB_REF_TYPE}" >> $GITHUB_OUTPUT
echo "SHA=${GITHUB_SHA}" >> $GITHUB_OUTPUT
upload:
name: Upload Documentation
needs: build
runs-on: ubuntu-latest
env:
NAME: ${{ needs.build.outputs.NAME }}
TYPE: ${{ needs.build.outputs.TYPE }}
SHA: ${{ needs.build.outputs.SHA }}
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Use Node.js v20
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
registry-url: https://registry.yarnpkg.org/
- name: Install Dependencies
run: yarn --immutable
- name: Download Documentation Artifacts
uses: actions/download-artifact@v4
with:
name: docs
path: docs
- name: Checkout Documentation Project
uses: actions/checkout@v4
with:
repository: 'sapphiredev/docs'
token: ${{ secrets.SKYRA_TOKEN }}
path: 'out'
- name: Move Documentation
if: ${{ env.TYPE == 'tag' }}
env:
SEMVER: ${{ env.NAME }}
run: |
mkdir -p out/pieces
mv docs/api.json out/docs/pieces/${SEMVER}.json
- name: Move Documentation
if: ${{ env.TYPE == 'branch' }}
run: |
mkdir -p out/pieces
mv docs/api.json out/docs/pieces/${NAME}.json
- name: Commit & Push
uses: nick-fields/retry@v3
with:
max_attempts: 3
retry_on: error
timeout_minutes: 1
command: |
cd out
git add .
if git diff-index --quiet HEAD --; then
echo "No changes to commit, exiting with code 0"
exit 0;
else
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
git config rebase.autostash true
git config pull.rebase true
git commit -m "docs(pieces): build for ${TYPE} ${NAME}: ${SHA}" || true
git pull
git push
fi